swftools-common
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Swftools-common] Re: pd2swf is not embedding all (any of) the used fon


From: Bhupendra Singh
Subject: [Swftools-common] Re: pd2swf is not embedding all (any of) the used font
Date: Wed, 1 Apr 2009 08:39:08 +0530

Hi Matthias,
>>>how does your text selection code look like?
I am generating the output swf as version 9 swf as I want to load it a MovieClip object. I am using Action Script 3.
==========================
public var _swf:MovieClip;

this._swfLoader = new Loader();
            var _this = this;
            this._swfLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, function(t:Event){
                _this._loaded = true;
                _this._swf = t.target.loader.content; // _swf will contain the swf as a movieclip object
                _this.addChild(_this._swf);
                trace( _this._swf.textSnapshot.charCount); // results in correct char count
                var match:Number = _this._swf.textSnapshot.findText(0, "bhup", false); //returns a valid index in the TextSnapshot
                trace("selecting " + _this._swf.textSnapshot.getText(0,100)); // prints nothing, I was expecting it to print first 100 character from the snapshot
                trace( match); //valid searched item's index
                if (match != -1) {
                    //_this._swf.textSnapshot.setSelectColor(0x87C7FF); //this doesn't effect the output
                    _this._swf.textSnapshot.setSelected(match, match + 4, true); //it should select and highlight the text, but unforunately nothing happens here
                }
    }
_swfloader.load("file.swf");
====================================================

And I am curious, why there is considerable size difference in 0.8.1 swf and latest dev snapshot swf. (almost 100 %)
--
Best Regards,
Bhupendra.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]