[Flashcoders] Firefox 3 and adblock problems

2008-09-09 Thread allandt bik-elliott (thefieldcomic.com)
came across this on digg and thought you guys might be interested http://www.asfusion.com/blog/entry/firefox-3-adblock-disaster ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

[Flashcoders] avoid red-eye effect library in photographs made in actionscript - possible?

2008-09-09 Thread Claudio M. E. Bastos Iorio
Hi, is possible the subject? Is there any library/algorithm to avoid the red eye effect in a photograph made in actionscript? I'm working on AIR, so access to file system is covered. If not, has any of you tried some library/solution? Any help/link/idea is welcome. I'm making my research on this

[Flashcoders] removeChild madness

2008-09-09 Thread Sander Schuurman
I know there's a lot written about the Garbage Collection, and removing assets in AS3... I'm trying to get my hands around it, but I'm still strugling ;) A simple example: I'm adding a MovieClip from the library, and I'm removing it as well, like a toggle. The MovieClip contains the

[Flashcoders] FLA/SWF TO FLV

2008-09-09 Thread Elia Morling
I have a flash animation that I need to convert to FLV. How should I proceed for best results? Should I convert SWF to FLV? I tried the MagicSwf2AVI, but the cropping was weird and the FLV quality was poor. Maybe because they are using poor encoder... Perhaps another approach... Should I

RE: [Flashcoders] removeChild madness

2008-09-09 Thread Romuald Quantin
I'm not sure but I think you don't correctly remove the onEnterFrame Event. As you use the weakReference you miss the false in the remove method, you should remove it that way: removeEventListener(Event.ENTER_FRAME, onEnterFrame, false); If this doesn't solve your problem, I usually set

[Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
I have a TexrArea I am creating via: mx.controls.TextArea I am trying to find a way to make it so the text is not selectable - when I select some text I get a green border around the textarea - I would like to get that to not show up and I am thinking that if they can not select the text

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Merrill, Jason
Have you tried selectable = false? Jason Merrill Bank of America Enterprise Technology Global Risk LLD Instructional Technology Media Join the Bank of America Flash Platform Developer Community Are you a Bank of America associate interested in innovative learning ideas and technologies?

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Yeah - didn't seem to affect anything -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Tuesday, September 09, 2008 12:06 PM To: Flash Coders List Subject: RE: [Flashcoders] TextArea class properties Have you tried selectable = false?

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread eric e. dolecki
Sounds like its a focus UI thing. You may need to turn that bit off. Eric On Tue, Sep 9, 2008 at 12:09 PM, Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED] wrote: Yeah - didn't seem to affect anything -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread Jon Bradley
On Sep 9, 2008, at 12:05 PM, Merrill, Jason wrote: Have you tried selectable = false? I think it might be: textAreaInstance.enabled = false; Getting rid of the focus rect is generally a separate issue though, but when the component 'enabled' property is set to false, the focus rect

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Beauty - this works - but it is graying out my text - how can I maintain the same text color when it is disabled... is there a style that is applicable? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jon Bradley Sent: Tuesday, September 09, 2008 12:35 PM

[Flashcoders] AS3 dynamic text fields and img

2008-09-09 Thread Jessica Criscione
I have an AS3 project where an icon is supposed to follow the text in a dynamic, multi-line text field. Right now, I'm appending it as an img tag at the end of the text. My problem is that it seems AS3 is always bumping the img down to a new line unless it's the first item in the string. No amount

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread Ian Thomas
Try the style 'disabledColor'. The docs are here: http://livedocs.adobe.com/flex/3/langref/mx/controls/TextArea.html Ian On Tue, Sep 9, 2008 at 5:41 PM, Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED] wrote: Beauty - this works - but it is graying out my text - how can I maintain the same text

Re: [Flashcoders] TextArea class properties

2008-09-09 Thread eric e. dolecki
Sounds like you need to disable the focusRect thing in addition to .selectable = false; On Tue, Sep 9, 2008 at 12:41 PM, Lehr, Theodore M (N-SGIS) [EMAIL PROTECTED] wrote: Beauty - this works - but it is graying out my text - how can I maintain the same text color when it is disabled... is

RE: [Flashcoders] TextArea class properties

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Beauty - thanks all -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ian Thomas Sent: Tuesday, September 09, 2008 12:48 PM To: Flash Coders List Subject: Re: [Flashcoders] TextArea class properties Try the style 'disabledColor'. The docs are here:

Re: [Flashcoders] AS3 dynamic text fields and img

2008-09-09 Thread sebastian
hmmm, have you tried: textFieldName.text += img... if that is not working, then try building it all in one sentence: imgAtEnd = img... segment1 = some value + imgAtEnd; //segment2 = same as segment 1 and 3 and 4 only with new different values textFieldName.text = segment1 + segment2 + segment3

[Flashcoders] getting loader to work with security policy...

2008-09-09 Thread BOYD SPEER
I'm having some diffuculty getting a loader object to call a php script that puts some data into the database (mysql) and returns a string. I placed a crossdomain.xml doc on the website at the level of the .swf. but can't seem to verify whether the policy doc is loaded or not. In AS3 do I have

RE: [Flashcoders] getting loader to work with security policy...

2008-09-09 Thread Robert Leisle
Hi Boyd, Yes, you'll need to do import flash.system.Security; to use the loadPolicyFile method. Also, in your crossdomain.xml, you'll need to include allow-access-from domain=www.boyd-speer.com/, or allow-access-from domain=*.boyd-speer.com/ The way it is coded now will only allow the specific

Re: [Flashcoders] getting loader to work with security policy...

2008-09-09 Thread Juan Pablo Califano
Maybe I'm misreading something, but placing a crossdomain policy file in boyd-speer.com to allow access from boyd-speer.com makes not much sense to me... The crossdomain file has to be placed in the target host, i.e. the server that holds the php file. It says, let any swf server from this domain

[Flashcoders] Component Issue

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Ok - so I have a movie that serves something like a template. Content is populated via creating text fields... removing movies and creating them again It all worked fine until I started using a textarea component... It seems like the inclusion of components is screwing something up where

RE: [Flashcoders] Component Issue

2008-09-09 Thread Lehr, Theodore M (N-SGIS)
Good old Google - it seems that getNextHighestDepth sets things out of reach for removeMovieClip -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Lehr, Theodore M (N-SGIS) Sent: Tuesday, September 09, 2008 3:24 PM To: Flash Coders List Subject:

RE: [Flashcoders] Component Issue

2008-09-09 Thread Mendelsohn, Michael
Sounds like you're using AS2. When you put the textarea on the stage, try doing it with movieclip.createclassobject() and when you want to get rid of it, use destroyObject(). I just went through some difficulties with the same issue. - MM ___

RE: [Flashcoders] AS3 dynamic text fields and img

2008-09-09 Thread Keith Reinfeld
Jessica, My problem is that it seems AS3 is always bumping the img down to a new line unless it's the first item in the string. This behavior hasn't changed from earlier versions of AS. Does anyone know any way around this other than calculating the text length and appending the

[Flashcoders] Tween multiple rotations

2008-09-09 Thread Glen Pike
Hi, I am trying to rotate an object through 1080 (3 * 360) degrees with TweenLite. Does anyone know if I have to join a sequence of 360 tweens together to do this, or is there a way of cheating so it just does as you would hope? Thanks Glen -- Glen Pike 01326 218440