Re: [Flashcoders] Reverse Compiling

2010-06-23 Thread John McCormack
That's why I make my own backups too. It's a 2nd level undo. On 22/06/2010 21:24, Henrik Andersson wrote: John McCormack wrote: Don't forget FileHamster from http://www.mogware.com/ It checks at specfied intervals and saves away revisions of each changed file, with the date and time sewn in. I

Re: [Flashcoders] Animation showing through Text

2010-06-23 Thread kennethkawam...@gmail.com
Set blendMode of the TextField to BlendMode.ALPHA before setting the TextField as mask. This is pure AS and you can even change the text dynamically while being used as mask :) -- Kenneth Kawamoto http://www.materiaprima.co.uk/ On 22 June 2010 21:40, Bill S. lists...@fo.com wrote: Thank you

[Flashcoders] CS3 vs CS5

2010-06-23 Thread Tom Gooding
Hi, I am still using Flash CS3, considering moving onto CS5 (we'll need to target player 10 soon in our AS3 projects so need an IDE upgrade to publish the visual elements - all our AS3 engineering is done using FDT/Flex SDK). I guess I am after straw-polls? Has anyone picked it up recently and

Re: [Flashcoders] CS3 vs CS5

2010-06-23 Thread Henrik Andersson
Tom Gooding wrote: Hi, I am still using Flash CS3, considering moving onto CS5 (we'll need to target player 10 soon in our AS3 projects so need an IDE upgrade to publish the visual elements - all our AS3 engineering is done using FDT/Flex SDK). I guess I am after straw-polls? Has anyone

[Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Kinda feel silly with this question, I can't get fullscreen mode to work: URL: http://clients.kurst.co.uk/ycommaz/12 HTML contains - allowFullScreen:'true' - and the fullscreen code is: private function ToggleFullScreen(event : MenuEvent) : void {

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Ángel Ambrosio Pazo
Set the fullScreen param in boolean not in string. From your HTML code: var params = {}; params.wmode= opaque, params.menu = false; params.allowScriptAccess = 'always'; params.allowFullScreen = true; params.bgcolor = '#ff'; Ángel Ambrosio Interactive Developer angelambro...@gmail.com

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Thanks for reply - already did this one fullscreen function was moved to a MouseEvent - Click handler: private function ClickFullScreenButton(event : MouseEvent) : void { //dispatchEvent( new MenuEvent( MenuEvent.FULL_SCREEN , false ) )

RE: [Flashcoders] FullScreen - not working

2010-06-23 Thread Merrill, Jason
Launching full-screen has to be user-initiated - meaning a user event like a MouseEvent.CLICK on a button has to initiate the full-screen launch. Are you doing this? Not sure if that is the issue here, but worth looking into. Jason Merrill Instructional Technology Architect Bank of America

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Cheers - however- it does not work Example with Boolean instead of string in param: http://clients.kurst.co.uk/ycommaz/13 - karim On 23 Jun 2010, at 15:32, Ángel Ambrosio Pazo wrote: Set the fullScreen param in boolean not in string. From your HTML code: var params = {};

Re: [Flashcoders] Reverse Compiling

2010-06-23 Thread Joe Minkiewicz
You could also get a free 2GB Dropbox account, put all your current project files in there, then move them to an external drive when the project's over. They save every version of your files for (I think) 30 days so it's like a poor man's version control. Also, I haven't used the feature yet but

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Ángel Ambrosio Pazo
Your MenuEvent class extends from Event or from MouseEvent? Mix the two solutions: swfobject param in boolean type and your MenuEvent class extending from MouseEvent. Ángel Ambrosio Interactive Developer angelambro...@gmail.com 2010/6/23 Karim Beyrouti ka...@kurst.co.uk Cheers - however- it

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
also - just for a note - it works in the standalone player, not the browser... - k On 23 Jun 2010, at 16:18, Ángel Ambrosio Pazo wrote: Your MenuEvent class extends from Event or from MouseEvent? Mix the two solutions: swfobject param in boolean type and your MenuEvent class extending

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Done - but still no joy... starting to feel like ..errr... like chucking my laptop out of the window private function ClickFullScreenButton(event : MouseEvent) : void { if (stage.displayState == StageDisplayState.NORMAL) {

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Andrew Kenward
Hey try changing your html allowFullScreen to allowfullscreen all lower case might fix it? or try using this generator for the correct html. chose dynamic publishing http://www.bobbyvandersluis.com/swfobject/generator/index.html Andrew Kenward 07590 609 554 www.milkybrain.co.uk On

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Fixed - forgot the a param in the SWFObject code: swfobject.embedSWF(YZLoader.swf, flashcontent, 100%, 100%, 10.0.0 , false, flashvars, params ); Again - Thanks for taking the time to reply ... Regards Karim Beyrouti On 23 Jun 2010, at 16:30, Karim Beyrouti wrote: also - just for a

[Flashcoders] Re: Flashcoders Digest, Vol 33, Issue 25

2010-06-23 Thread Andrew Kenward
Also you have missing semicolons ; in your html. var params = { menu : false, allowfullscreen: true }; Also just to make sure download swfobject 2 again. There was a buggy version about. http://code.google.com/p/swfobject/ Andrew Kenward 07590 609 554 www.milkybrain.co.uk On 23

Re: [Flashcoders] paper effect

2010-06-23 Thread Gustavo Duenas
Thanks where can I get this flipping book component Gustavo On Jun 22, 2010, at 6:53 PM, Karl DeSaulniers wrote: You could dissect/use the Flipping Book component Karl On Jun 22, 2010, at 5:42 PM, Gustavo Duenas wrote: Hi, there is on the internet some tutorial about how can I make an

Re: [Flashcoders] CS3 vs CS5

2010-06-23 Thread Gustavo Duenas
unfortunately for me, I have a g5 mac late 2005, and the new flash doesn't support it. Gustavo On Jun 23, 2010, at 9:14 AM, Henrik Andersson wrote: Tom Gooding wrote: Hi, I am still using Flash CS3, considering moving onto CS5 (we'll need to target player 10 soon in our AS3 projects so

[Flashcoders] Animation showing through Text

2010-06-23 Thread Bill S.
Kenneth, BlendMode.ALPHA is exactly what I needed. It works great. Thank you!, ~Bill - Original Message - From: kennethkawam...@gmail.com To: Bill S. ; Flash Coders List Cc: Keith Reinfeld Sent: Wednesday, June 23, 2010 5:45 AM Subject: Re: [Flashcoders] Animation

[Flashcoders] Question about AIR2 and wireless network detection

2010-06-23 Thread Eric E. Dolecki
I am running a little AIR2 application, and I am trying to get additional information about networks... Channel, PHY Mode (ie. 802.11n), or Security (ie. WPA2 Personal). I don't see these properties listed anywhere. Is there a way to get at these properties, or is this a feature request? Eric

[Flashcoders] Re: Question about AIR2 and wireless network detection

2010-06-23 Thread Eric E. Dolecki
Also some notion of network strength... On Wed, Jun 23, 2010 at 1:36 PM, Eric E. Dolecki edole...@gmail.com wrote: I am running a little AIR2 application, and I am trying to get additional information about networks... Channel, PHY Mode (ie. 802.11n), or Security (ie. WPA2 Personal). I

[Flashcoders] TweenMax EndArrayPlugin();

2010-06-23 Thread Ryan P
I am using Gaia Framework, and am trying to upgrade a old project from 3.1.5 to 3.2.3. Everything looks like it is working corretly but I am getting: -- The class or interface 'ArrayTweenInfo'

Re: [Flashcoders] paper effect

2010-06-23 Thread Nathan Mynarcik
http://activeden.net/searches?term=Magazinetype=files http://activeden.net/searches?term=Magazinetype=files On Wed, Jun 23, 2010 at 12:30 PM, Gustavo Duenas gdue...@leftandrightsolutions.com wrote: Thanks where can I get this flipping book component Gustavo On Jun 22, 2010, at 6:53 PM,

Re: [Flashcoders] paper effect

2010-06-23 Thread Ryan P
Hey Gus, here is a open source one: http://www.megazine3.de/ Rp.. On Wed, Jun 23, 2010 at 11:56 AM, Nathan Mynarcik nat...@mynarcik.comwrote: http://activeden.net/searches?term=Magazinetype=files http://activeden.net/searches?term=Magazinetype=files On Wed, Jun 23, 2010 at 12:30 PM,

Re: [Flashcoders] TweenMax EndArrayPlugin();

2010-06-23 Thread Steven Sacks
As mentioned in the release notes awhile back, the new version of Gaia uses the new Greensock v11 platform, which is different than the previous one and uses a brand new package. You cannot just upgrade an old Gaia project without taking the time to manually change all your references to the

Re: [Flashcoders] paper effect

2010-06-23 Thread Gustavo Duenas
thanks man, it looks awesome. Gus On Jun 23, 2010, at 3:05 PM, Ryan P wrote: Hey Gus, here is a open source one: http://www.megazine3.de/ Rp.. On Wed, Jun 23, 2010 at 11:56 AM, Nathan Mynarcik nat...@mynarcik.comwrote: http://activeden.net/searches?term=Magazinetype=files

Re: [Flashcoders] paper effect

2010-06-23 Thread Micky Hulse
Not sure if this will be helpful, but Indesign can output PDFs to a flip action PDF. This thread has some good info and links: http://www.listsearch.com/InDesign/Thread/index.lasso?20365#first Ofc, it sounds like you want to learn how to do it yourself. :) Thanks for that link Ryan! M

Re: [Flashcoders] captured or non-captured named group back references in AS3 regex

2010-06-23 Thread Anthony Pace
On 6/18/2010 1:07 PM, kennethkawam...@gmail.com wrote: I wasn't reading your post properly :) Have you tried (?P=name) ? (or you may want try \n) oops, sorry for not getting back to you. Thanks for the response. I figured it out too by looking in the docs. Having to type the stupid P

Re: [Flashcoders] paper effect

2010-06-23 Thread Gustavo Duenas
I will check on it gus On Jun 23, 2010, at 7:06 PM, Micky Hulse wrote: Not sure if this will be helpful, but Indesign can output PDFs to a flip action PDF. This thread has some good info and links: http://www.listsearch.com/InDesign/Thread/index.lasso?20365#first Ofc, it sounds like you want