Re: [Flashcoders] Flash and Database Issue - Need Advice

2008-01-28 Thread Omar Fouad
Thank You very Much ppl :D On Jan 27, 2008 10:39 PM, Glen Pike [EMAIL PROTECTED] wrote: Hi, I currently have the Beta of ASV 6 which decompiles my AS3 SWF's without too many problems. Regarding Flash vs Flex debates, I have not got CS3 yet, but have been developing in AS3 using

RE: [Flashcoders] OldSchool buttons w/NewSchool AS

2008-01-28 Thread Matthew James Poole
A number of companies I've worked for have had solutions for this along a similar vein. Basically you have labeled states in a MovieClip and that MovieClip has a AS class linkage and you have code that manages the states. It does mean that the desingers have to remember to use the class linkage,

Re: [Flashcoders] Event Handling in ActionScript 3

2008-01-28 Thread Hans Wichman
Hi, basically you look at every method in the interface, and write a method in your own class with the exact same signature and then you declare the class as an implemenation of that interface. Say you'd have an interface ISerializable which would allow you to convert an object to xml , the

Re: [Flashcoders] OldSchool buttons w/NewSchool AS

2008-01-28 Thread Glen Pike
Hi, That's the same approach I have taken - create basic rollover button code and give the designers a template. It is not a hugely different with AS3; extend MovieClip, add event handlers for mouse over, etc. then fill in the functionality as you see fit. It's a good exercise too if

Re: [Flashcoders] Event Handling in ActionScript 3

2008-01-28 Thread Guybrush Threepwood
Thank you again! I can't think of a reason not to extend EventDispatcher. I think most classes in AS3 seem to be a subclass of it. I'm sure there must be cases where you can't just extend EventDispatcher. I just can't think of one now. Thanks! Guybrush

Re: [Flashcoders] OldSchool buttons w/NewSchool AS

2008-01-28 Thread Steven Sacks
Trick o' the day: Make a MovieClip. Inside it put the following frame labels: _up _over _down (optional) Assign any mouse action (onRelease, onPress, onRollOver, etc.) to the MovieClip and it will behave like a Button except it's a MovieClip so you can target stuff inside. Steven Sacks

[Flashcoders] Zoom size restriction in flash

2008-01-28 Thread Deepanjan Das
Hi everyone, Can anyone tell me the image zoom max limit in flash, after which there is a memory overflow and the image cannot be seen. Thank you Best Deepanjan Das ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com

[Flashcoders] Animated gif

2008-01-28 Thread tommek
Dynamically loading animated gif in flash and get them to play is that possible. I found http://dougmccune.com/blog/2007/01/19/how-to-load-animated-gifs-using-adobe-flex-20/ it has been done in Flex. Can this be done in flash cs3 as3 code? Is it possible to the loader |to

Re: [Flashcoders] Animated gif

2008-01-28 Thread ekameleon
Hello :) You can see too the AS3 Gif Player class : http://www.bytearray.org/?p=95 EKA+ :) 2008/1/29, tommek [EMAIL PROTECTED]: Dynamically loading animated gif in flash and get them to play is that possible. I found