RE: [Flashcoders] Re: Assets quality Question.

2008-05-27 Thread Cor
We because we don't know how it is done. ;-)) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Omar Fouad Sent: dinsdag 27 mei 2008 19:12 To: Flash Coders List Subject: [Flashcoders] Re: Assets quality Question. Why no one is answering to me On Tue, May

Re: [Flashcoders] Re: Assets quality Question.

2008-05-27 Thread Omar Fouad
HAhaha!! On Tue, May 27, 2008 at 8:28 PM, Cor [EMAIL PROTECTED] wrote: We because we don't know how it is done. ;-)) -Original Message- From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED] On Behalf Of Omar Fouad Sent: dinsdag 27 mei 2008 19:12 To: Flash Coders List Subject:

Re: [Flashcoders] Re: Assets quality Question.

2008-05-27 Thread leolea
Make sure your graphics are on full pixels. Not ony the graphics, but also their containers and the containers of their containers, and so on. ex: You have navMc.pixelButtonMc ( pixelButtonMc is contained in navMc ) pixelButtonMc.x = 10; ... but navMc.x = 5.6; result: pixelButtonMc will not

Re: [Flashcoders] Image in dynamic text field

2008-05-27 Thread Helmut Granda
what does the XML Looks like? On Tue, May 27, 2008 at 6:33 AM, Rajiv Seth (Pixelated) [EMAIL PROTECTED] wrote: When I am trying to call an image inside text field dynamically, it is appearing after a line break, but I want the image to come in line with the text. I have created the text

Re: [Flashcoders] API Interface in SWC...

2008-05-27 Thread Juan Pablo Califano
Once I did something similar, except we were not using SWC's but SWF's, and it was a Flash project (not flex). We gave a third party agency the url to an swf that they would load at runtime. That swf contained some library of classes, but there was just one base class that they had to use

Re: [Flashcoders] API Interface in SWC...

2008-05-27 Thread Helmut Granda
Juan, Thanks for your comments and for sharing with us your approach. I am doing almost the same thing, the only difference is that the user should be able to access the methods with just one call without having to instantiate or call any classes. BaseClass.methodCall(); That's it, nothing

[Flashcoders] Flash Player security hole

2008-05-27 Thread Dave Segal
Does anyone have more info on this? What is the flaw and what can we do to protect our users? http://www.pcworld.com/businesscenter/article/146343/new_adobe_flaw_being_ used_in_attacks_says_symantec.html ___ Flashcoders mailing list

Re: [Flashcoders] Flash Player security hole

2008-05-27 Thread Bob Wohl
have them upgrade to 9.0.124. http://www.adobe.com/devnet/flashplayer/articles/flash_player9_security_update.html B. On Tue, May 27, 2008 at 2:03 PM, Dave Segal [EMAIL PROTECTED] wrote: Does anyone have more info on this? What is the flaw and what can we do to protect our users?

RE: [Flashcoders] Flash Player security hole

2008-05-27 Thread Merrill, Jason
have them upgrade to 9.0.124. Bob, the article states, the flaw affects both the recently released Flash Player version 9.0.124 .0 and version 9.0.115.0 Jason Merrill Bank of America Global Technology Operations Global Risk LLD eTools Multimedia Join the Bank of America Flash Platform

Re: [Flashcoders] Flash Player security hole

2008-05-27 Thread Bob Wohl
egads! My apologies, I quickly skimmed over it and figured it was the same as last month. B. On Tue, May 27, 2008 at 3:09 PM, Merrill, Jason [EMAIL PROTECTED] wrote: have them upgrade to 9.0.124. Bob, the article states, the flaw affects both the recently released Flash Player version

Re: [Flashcoders] as3 - calling / sending with vars

2008-05-27 Thread EECOLOR
Another way to make the URLRequest is like this: *var urlVariables:URLVariables = new URLVariables(var1=1var2=10); var request:URLRequest = new URLRequest(http://url.com/;); request.data = urlVariables;* Greetz Erik On 5/27/08, Søren Christensen [EMAIL PROTECTED] wrote: Hi Viktor This