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 make my own backups separate to them, always on another drive.


You aren't supposed to check in half finished work! It is manual for a 
reason!

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders





___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 Keith.

 (And, yes, that looks like a good approach).

 I am all .AS3-based though, literally nothing in the .FLA, or library, other 
 than a FLA document class of Main pointing out to a Main.as.

 However, I may need to come back to your way.

 Thanks again,
 ~Bill


  - Original Message -
  From: Keith Reinfeld
  To: 'Bill S.' ; 'Flash Coders List'
  Sent: Tuesday, June 22, 2010 3:37 PM
  Subject: RE: [Flashcoders] Animation showing through Text


  You will need to 'break apart' the text in order to use it as a mask this
  way.
  Select the textfield and use Ctrl+B twice. (Modify  Break Apart)


  Regards,

  Keith Reinfeld

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[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 started 
using? Just wondering if there are any drawbacks and/or excellent new stuff 
that helps workflow?

Tom
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 picked it up recently and started 
using? Just wondering if there are any drawbacks and/or excellent new stuff 
that helps workflow?



Much better code assist, it now recognizes not just your own classes, 
but also timeline instances even without the postfixes.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[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 {

stage.fullScreenSourceRect = new Rectangle( 0 ,0 , 
Capabilities.screenResolutionX , Capabilities.screenResolutionY);

if (stage.displayState == StageDisplayState.NORMAL) {

stage.displayState=StageDisplayState.FULL_SCREEN;

} else { stage.displayState=StageDisplayState.NORMAL; }

}

Also using the latest version of swfobject... have been googling, and spending 
a fair bit of time for this one, but it's
just not working for me.

I get the following error:

'SecurityError: Error #2152: Full screen mode is not allowed.
at flash.display::Stage/set_displayState()
at flash.display::Stage/set displayState()
at 
com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/Documents/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.as:669]

anyone has ideas for this one?


Best



Karim Beyrouti___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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


2010/6/23 Karim Beyrouti ka...@kurst.co.uk

 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 {

stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
 Capabilities.screenResolutionX , Capabilities.screenResolutionY);

if (stage.displayState == StageDisplayState.NORMAL) {

stage.displayState=StageDisplayState.FULL_SCREEN;

} else { stage.displayState=StageDisplayState.NORMAL; }

}

 Also using the latest version of swfobject... have been googling, and
 spending a fair bit of time for this one, but it's
 just not working for me.

 I get the following error:

 'SecurityError: Error #2152: Full screen mode is not allowed.
at flash.display::Stage/set_displayState()
at flash.display::Stage/set displayState()
at
 com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/Documents/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.as:669]

 anyone has ideas for this one?


 Best



 Karim Beyrouti___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 ) 
)
stage.fullScreenSourceRect = new Rectangle( 0 ,0 , 
Capabilities.screenResolutionX , Capabilities.screenResolutionY);

if (stage.displayState == StageDisplayState.NORMAL) {

stage.displayState=StageDisplayState.FULL_SCREEN;

} else { stage.displayState=StageDisplayState.NORMAL; }

}

Pasted the wrong function before ( had just moved it )... still scratching my 
head on this one...

also ( another oddity ) - Chrome for OsX does not seem to change the mouse when 
hovering over a button - but well - i can live with 
that - if i get Fullscreen working...

Thanks again...




On 23 Jun 2010, at 15:27, Merrill, Jason wrote:

 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   Global Learning 
 
 Join the Bank of America Flash Platform Community  and visit our
 Instructional Technology Design Blog
 (Note: these resources are only available for Bank of America
 associates)
 
 
 
 
 
 -Original Message-
 From: flashcoders-boun...@chattyfig.figleaf.com
 [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karim
 Beyrouti
 Sent: Wednesday, June 23, 2010 10:22 AM
 To: Flashcoders List
 Subject: [Flashcoders] FullScreen - not working
 
 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 {
   
   stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
 Capabilities.screenResolutionX , Capabilities.screenResolutionY);
 
   if (stage.displayState == StageDisplayState.NORMAL) {
   
   stage.displayState=StageDisplayState.FULL_SCREEN;
   
   } else { stage.displayState=StageDisplayState.NORMAL; }
   
   }
 
 Also using the latest version of swfobject... have been googling, and
 spending a fair bit of time for this one, but it's just not working for
 me.
 
 I get the following error:
 
 'SecurityError: Error #2152: Full screen mode is not allowed.
   at flash.display::Stage/set_displayState()
   at flash.display::Stage/set displayState()
   at
 com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/D
 ocuments/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.
 as:669]
 
 anyone has ideas for this one?
 
 
 Best
 
 
 
 Karim Beyrouti___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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   Global Learning 

Join the Bank of America Flash Platform Community  and visit our
Instructional Technology Design Blog
(Note: these resources are only available for Bank of America
associates)





-Original Message-
From: flashcoders-boun...@chattyfig.figleaf.com
[mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karim
Beyrouti
Sent: Wednesday, June 23, 2010 10:22 AM
To: Flashcoders List
Subject: [Flashcoders] FullScreen - not working

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 {

stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
Capabilities.screenResolutionX , Capabilities.screenResolutionY);

if (stage.displayState == StageDisplayState.NORMAL) {

stage.displayState=StageDisplayState.FULL_SCREEN;

} else { stage.displayState=StageDisplayState.NORMAL; }

}

Also using the latest version of swfobject... have been googling, and
spending a fair bit of time for this one, but it's just not working for
me.

I get the following error:

'SecurityError: Error #2152: Full screen mode is not allowed.
at flash.display::Stage/set_displayState()
at flash.display::Stage/set displayState()
at
com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/D
ocuments/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.
as:669]

anyone has ideas for this one?


Best



Karim Beyrouti___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 = {};
 params.wmode= opaque,
 params.menu = false;
 params.allowScriptAccess = 'always';
 params.allowFullScreen = true;
 params.bgcolor = '#ff';
 
 
 Ángel Ambrosio
 Interactive Developer
 angelambro...@gmail.com
 
 
 2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
 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 {
 
   stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
 Capabilities.screenResolutionX , Capabilities.screenResolutionY);
 
   if (stage.displayState == StageDisplayState.NORMAL) {
 
   stage.displayState=StageDisplayState.FULL_SCREEN;
 
   } else { stage.displayState=StageDisplayState.NORMAL; }
 
   }
 
 Also using the latest version of swfobject... have been googling, and
 spending a fair bit of time for this one, but it's
 just not working for me.
 
 I get the following error:
 
 'SecurityError: Error #2152: Full screen mode is not allowed.
   at flash.display::Stage/set_displayState()
   at flash.display::Stage/set displayState()
   at
 com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/Documents/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.as:669]
 
 anyone has ideas for this one?
 
 
 Best
 
 
 
 Karim Beyrouti___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 the shared hosting plan I use for
my personal website includes svn and git repository hosting. If you have
similar you wouldn't have to set up your own server and client to use them.

Later,
Joe




On Tue, Jun 22, 2010 at 1:47 PM, jonathan howe jonathangh...@gmail.comwrote:

 Obvious but perhaps helpful: Installing a source control server on the same
 machine that you're working won't get you too far in terms of disaster
 recovery.

 For the lightweight developer who does not have a setup for a separate
 machine running as a server or hosted solution, I would just recommend the
 usual frequent backups on an external drive. Iterate your fla filenames
 from
 time to time as they can become corrupt. I also use LiveMesh to sync
 between
 several machines, which in essence becomes a cloud-based ersatz backup,
 (although without any provisions for rollback/versioning).

 -jonathan



 On Tue, Jun 22, 2010 at 10:16 AM, Kerry Thompson al...@cyberiantiger.biz
 wrote:

  Gustavo Duenas wrote:
 
   how can I install a subversion server on a mac?
 
  Do you want an SVN client on a Mac, or do you want to have a Mac SVN
  server?
 
  I've installed SVN on a Linux server, and the client on Mac and PC.
  I've never used the Mac as the host, though.
 
  Here's a link to the SVN Mac download page:
  http://subversion.apache.org/packages.html. If you look around a
  bit, there's quite a bit of documentation.
 
  Cordially,
 
  Kerry Thompson
   ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 



 --
 -jonathan howe
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 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 = {};
  params.wmode= opaque,
  params.menu = false;
  params.allowScriptAccess = 'always';
  params.allowFullScreen = true;
  params.bgcolor = '#ff';
 
 
  Ángel Ambrosio
  Interactive Developer
  angelambro...@gmail.com
 
 
  2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
  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 {
 
stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
  Capabilities.screenResolutionX , Capabilities.screenResolutionY);
 
if (stage.displayState == StageDisplayState.NORMAL) {
 
stage.displayState=StageDisplayState.FULL_SCREEN;
 
} else { stage.displayState=StageDisplayState.NORMAL; }
 
}
 
  Also using the latest version of swfobject... have been googling, and
  spending a fair bit of time for this one, but it's
  just not working for me.
 
  I get the following error:
 
  'SecurityError: Error #2152: Full screen mode is not allowed.
at flash.display::Stage/set_displayState()
at flash.display::Stage/set displayState()
at
 
 com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/Documents/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.as:669]
 
  anyone has ideas for this one?
 
 
  Best
 
 
 
  Karim Beyrouti___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 from MouseEvent.
 
 Ángel Ambrosio
 Interactive Developer
 angelambro...@gmail.com
 
 
 2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
 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 = {};
 params.wmode= opaque,
 params.menu = false;
 params.allowScriptAccess = 'always';
 params.allowFullScreen = true;
 params.bgcolor = '#ff';
 
 
 Ángel Ambrosio
 Interactive Developer
 angelambro...@gmail.com
 
 
 2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
 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 {
 
  stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
 Capabilities.screenResolutionX , Capabilities.screenResolutionY);
 
  if (stage.displayState == StageDisplayState.NORMAL) {
 
  stage.displayState=StageDisplayState.FULL_SCREEN;
 
  } else { stage.displayState=StageDisplayState.NORMAL; }
 
  }
 
 Also using the latest version of swfobject... have been googling, and
 spending a fair bit of time for this one, but it's
 just not working for me.
 
 I get the following error:
 
 'SecurityError: Error #2152: Full screen mode is not allowed.
  at flash.display::Stage/set_displayState()
  at flash.display::Stage/set displayState()
  at
 
 com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/Documents/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.as:669]
 
 anyone has ideas for this one?
 
 
 Best
 
 
 
 Karim Beyrouti___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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) {

stage.displayState=StageDisplayState.FULL_SCREEN;

} else { stage.displayState=StageDisplayState.NORMAL; }

}

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 from MouseEvent.
 
 Ángel Ambrosio
 Interactive Developer
 angelambro...@gmail.com
 
 
 2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
 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 = {};
 params.wmode= opaque,
 params.menu = false;
 params.allowScriptAccess = 'always';
 params.allowFullScreen = true;
 params.bgcolor = '#ff';
 
 
 Ángel Ambrosio
 Interactive Developer
 angelambro...@gmail.com
 
 
 2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
 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 {
 
  stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
 Capabilities.screenResolutionX , Capabilities.screenResolutionY);
 
  if (stage.displayState == StageDisplayState.NORMAL) {
 
  stage.displayState=StageDisplayState.FULL_SCREEN;
 
  } else { stage.displayState=StageDisplayState.NORMAL; }
 
  }
 
 Also using the latest version of swfobject... have been googling, and
 spending a fair bit of time for this one, but it's
 just not working for me.
 
 I get the following error:
 
 'SecurityError: Error #2152: Full screen mode is not allowed.
  at flash.display::Stage/set_displayState()
  at flash.display::Stage/set displayState()
  at
 
 com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/Documents/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.as:669]
 
 anyone has ideas for this one?
 
 
 Best
 
 
 
 Karim Beyrouti___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 23 Jun 2010, at 16:31, flashcoders-requ...@chattyfig.figleaf.com wrote:

 Re: [Flashcoders] FullScreen - not working

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 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 from MouseEvent.
 
 Ángel Ambrosio
 Interactive Developer
 angelambro...@gmail.com
 
 
 2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
 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 = {};
 params.wmode= opaque,
 params.menu = false;
 params.allowScriptAccess = 'always';
 params.allowFullScreen = true;
 params.bgcolor = '#ff';
 
 
 Ángel Ambrosio
 Interactive Developer
 angelambro...@gmail.com
 
 
 2010/6/23 Karim Beyrouti ka...@kurst.co.uk
 
 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 {
 
 stage.fullScreenSourceRect = new Rectangle( 0 ,0 ,
 Capabilities.screenResolutionX , Capabilities.screenResolutionY);
 
 if (stage.displayState == StageDisplayState.NORMAL) {
 
 stage.displayState=StageDisplayState.FULL_SCREEN;
 
 } else { stage.displayState=StageDisplayState.NORMAL; }
 
 }
 
 Also using the latest version of swfobject... have been googling, and
 spending a fair bit of time for this one, but it's
 just not working for me.
 
 I get the following error:
 
 'SecurityError: Error #2152: Full screen mode is not allowed.
 at flash.display::Stage/set_displayState()
 at flash.display::Stage/set displayState()
 at
 
 com.YcommaZ.navigation.main::Menu/ClickFullScreenButton()[/Users/karim/Documents/Work/Clients/YcommaZ/Site/src/com/YcommaZ/navigation/main/Menu.as:669]
 
 anyone has ideas for this one?
 
 
 Best
 
 
 
 Karim Beyrouti___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[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 Jun 2010, at 16:31, flashcoders-requ...@chattyfig.figleaf.com wrote:

 Re: [Flashcoders] FullScreen - not working

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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  
effect like paper, something like you have your paper sheets moved  
by your hand, like the
pages of a book, I was wondering if someone knows a tutorial for  
that?


Gus
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


Karl DeSaulniers
Design Drumm
http://designdrumm.com

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 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 started using? Just wondering if there are any drawbacks and/or  
excellent new stuff that helps workflow?




Much better code assist, it now recognizes not just your own  
classes, but also timeline instances even without the postfixes.

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[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 showing through Text


  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/
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[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 mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[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 don't see these properties listed anywhere. Is there a way to get at
 these properties, or is this a feature request?


 Eric




-- 
http://ericd.net
Interactive design and development
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


[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' could not be loaded.

The class or interface 'ArrayTweenInfo' could not be loaded.

There is no class or package with the name
'com.greensock.plugins.EndArrayPlugin' found in package
'com.greensock.plugins'.

--

I am kinda new to this plugin thing..

Thanks,

Ryan
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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, 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 effect
 like paper, something like you have your paper sheets moved by your hand,
 like the
 pages of a book, I was wondering if someone knows a tutorial for that?

 Gus
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 Karl DeSaulniers
 Design Drumm
 http://designdrumm.com

 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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, Gustavo Duenas 
 gdue...@leftandrightsolutions.com wrote:

  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
 effect
  like paper, something like you have your paper sheets moved by your
 hand,
  like the
  pages of a book, I was wondering if someone knows a tutorial for that?
 
  Gus
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
  Karl DeSaulniers
  Design Drumm
  http://designdrumm.com
 
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 
  ___
  Flashcoders mailing list
  Flashcoders@chattyfig.figleaf.com
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
 ___
 Flashcoders mailing list
 Flashcoders@chattyfig.figleaf.com
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 old Tween functions and 
delete the old gs package.


There's no way to do this automatically for you. You will have to do this 
yourself. If you're not comfortable doing it, then you should probably keep that 
project at 3.1.5.





On 6/23/2010 11:48 AM, Ryan P wrote:

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' could not be loaded.

The class or interface 'ArrayTweenInfo' could not be loaded.

There is no class or package with the name
'com.greensock.plugins.EndArrayPlugin' found in package
'com.greensock.plugins'.

--

I am kinda new to this plugin thing..

Thanks,

Ryan
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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
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, 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

effect
like paper, something like you have your paper sheets moved by  
your

hand,

like the
pages of a book, I was wondering if someone knows a tutorial for  
that?


Gus
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



Karl DeSaulniers
Design Drumm
http://designdrumm.com

___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 after the ? is what got me for a few minutes.

(?Pname)   \kname  worked fine for me; yet, why ?Pname ? is it an 
allusion to python cause they did it first? if so why not use \gname 
which does not seem to work?


Is that, the allusion to Python, the reason why I can't get alternating 
with groups of the same name, the .net way, to work either?


e.g. trying to specify only dates that fall into Pisces from
dob='feb/22/1980'
dob='mar 22 1922'
dob='nov 11 1988'
dob='mar/12/1956'
dob='feb 21 82'
dob='mar/12/1956'

This won't work even with the P, because python doesn't allow groups of 
the same name even in a logical OR alternation:

(?:dob='(?:(?Pmonthfeb)(?:\s|/)(?Pday2[0-9]|19)|(?Pmonthmar)(?:\s|/)(?Pday[0-1]?[0-9]|20))(?:\s|/)(?Pyear\d{2,4})))

and this is the best alternative I could come up with; yet, then again, 
I am obviously in dire need of work with regex

(?:dob='(?Pmonthfeb|mar)(?:\s|/)(?Pday(?=feb(?:\s|/))(?:19|2[0-9])|(?=mar(?:\s|/))(?:1?[0-9]\b|20))(?:\s|/)(?Pyear(?:\d\d){1,2})')
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders


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 to learn how to do it yourself. :)

Thanks for that link Ryan!

M
___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders



___
Flashcoders mailing list
Flashcoders@chattyfig.figleaf.com
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders