Re: [Flashcoders] RE: Optimising file size - stripping down intrinsics ...

2008-09-18 Thread Ian Thomas
SJF, The only thing he _could_ have stripped out is code from the non-intrinsic Flash code; for example, the Flash component classes, the Flex components and framework. Those aren't intrinsic, but _are_ bundled with Flash/Flex. Intrinsics, by their nature, are part of the Flash Player as I

[Flashcoders] External flv security issue...

2008-09-18 Thread Sander Schuurman
hi cool list, I'm trying to load external swf into my flashapp. crossdomain.xml is in the correct place... the root of the server wich hosts the flv's... checkPolicyFile is giving positive results... inside the the swf is a flash video... don't know if this is external or internal... I keep

[Flashcoders] Can I avoid distorted bitmaps when scaling dynamically?

2008-09-18 Thread Ali Drongo
Hiya, I need to code some tweens that scale movieclips containing bitmaps. At the moment I'm using TweenMax and, when I scale the images they look distorted, the same way they do if you scale bitmaps on the timeline. Does anyone know of a way I can avoid this distortion? Thanks! Ali

[Flashcoders] AS3 - setting a combobox to display a selection matching a string variable

2008-09-18 Thread BOYD SPEER
I need to cause a combobox to programmatically change to display a selection matching a string variable. I am using the following code without results... // three items in the combobox // the last item in the myprofile array contains the string var. for (i=0; i3; i++) { if

[Flashcoders] Two Parts Question for Displaying Special Characters/Symbols/Images

2008-09-18 Thread ITSCO
Hello everybody I am trying to display special characters within a text field either by specifying their numerical entities in an outside XML file, or by bringing them from the library. For illustration purpose lets consider a symbol named “checkMark” Part 1: The “checkMark” image

SOLVED: [Flashcoders] AS3 - setting a combobox to display a selection matching a string variable

2008-09-18 Thread BOYD SPEER
Thanks guys! This was the correct solution: // three items in the combobox // the last item in the myprofile array contains the string var. for (i=0; i3; i++) { var thematch = dialect.dialect.getItemAt(i); if (thematch.label==myprofile[myprofile.length-1]) {

Re: [Flashcoders] Can I avoid distorted bitmaps when scaling dynamically?

2008-09-18 Thread Zeh Fernando
If you mean they lose quality (instead of distort), it's because they don't have interpolation on, and you have to change it. How you do so depends on how the images are featured. If they're single images (featured inside the SWF) you need to turn on smoothing on the bitmap properties on the

Re: [Flashcoders] Can I avoid distorted bitmaps when scaling dynamically?

2008-09-18 Thread Jorge Rego { IPP }
Have you turned the allow smoothing on? If you need to do it for a big number of bitmaps consider doing it with a .jsfl command. Jorge rego On Thu, Sep 18, 2008 at 5:26 PM, Ali Drongo [EMAIL PROTECTED]wrote: Hiya, I need to code some tweens that scale movieclips containing bitmaps. At the

[Flashcoders] Anchor tag in textfield looks clickable, but its not

2008-09-18 Thread kris range
In our application we are using css styled html text through externally loaded stylesheets and fonts. Everythings been working great. The clients says they want to use anchor links in the text. So we put in some sample html links to test and something is a miss. The links, they show up, they look

[Flashcoders] multiple classes in one swc?

2008-09-18 Thread eric e. dolecki
Is it possible to have many classes burned into a single SWC and then call classes out of it? - linked to SWC import someClass; import someOtherClass; var foo:SomeClass = new SomeClass(); var bar:SomeOtherClass = new SomeOtherClass(); ___ Flashcoders

Re: [Flashcoders] multiple classes in one swc?

2008-09-18 Thread Hans Wichman
Yes, as2 or as3 ? greetz JC On Thu, Sep 18, 2008 at 9:58 PM, eric e. dolecki [EMAIL PROTECTED] wrote: Is it possible to have many classes burned into a single SWC and then call classes out of it? - linked to SWC import someClass; import someOtherClass; var foo:SomeClass = new SomeClass();

[Flashcoders] HTML in a TextArea

2008-09-18 Thread Lehr, Theodore M (N-SGIS)
OK - so I have a textarea that I am having hold an image followed by text... by default the text follows immediately by the text - I want the text to be below the image... I have tried br/ and that works but the size of the images is dynamic so there is no hard answer... I have also tried p/p or

Re: [Flashcoders] multiple classes in one swc?

2008-09-18 Thread eric e. dolecki
AS3 - I actually got it to work 3 secs after sending that email. If I used anything but a generic package, import statements after the first got wonky. The first class was okay, after that FAIL. Got it all sorted out - kick arse ;) On Thu, Sep 18, 2008 at 4:13 PM, Hans Wichman [EMAIL PROTECTED]

RE: [BULK] Re: [Flashcoders] OT - Detecting flash versions for a large site

2008-09-18 Thread Lord, Susan, CTR, DSS
This is really cool, Glen! Thanks for the heads up on Flash Analytics. I am going to implement this on my personal site! Unfortunately, I am with the gov't and we can't use the Google app on our site. I wish we could! Does anyone know if there is a way to write something that runs with the

[Flashcoders] Zipping in AS3

2008-09-18 Thread Mac Angell
Hey everyone! I'm trying to find a solid zip/unzip library for AS3. I've done some testing with both FZip and AS3 Zip, and I've been running into problems with both. So I'm wondering if there are any others out there that anyone knows about that have been tested extensively. Or if any of you

[Flashcoders] Making dynamic text look the same as static text

2008-09-18 Thread Alan Neilsen
I have found that when I call text into a dynamic text field from a variable, it does not look the same as the text in a static text field set with the same font, size, etc. The text in the dynamic text field appears with no anti-alias, emboldening or italics, even though I have set those

Re: [BULK] Re: [Flashcoders] OT - Detecting flash versions for a large site

2008-09-18 Thread sebastian
Hi again Susan, There are several ways, you can write your own Javascript or search google for an example]. Or, you can use SWFObject, and then rip out the version it finds in the externally loaded swfobject.js file: deconcept.SWFObjectUtil.getPlayerVersion(); Or, you can load a flash SWF