[Flashcoders] Working with assets from auth. environment

2009-12-30 Thread Alexander Farber
Hello, I'm trying to move from pure AS3 MovieClips to the ones composed from auth.env. assets from the library - so that I can easier add gradients etc. But when for example doing so for text fields, I don't see any text that I add in my AS code. So I've added a defaultTextFormat setting for

Re: [Flashcoders] Working with assets from auth. environment

2009-12-30 Thread Glen Pike
Hi, Are you making sure that you embed the font in the authoring environment? If you are using rotation / alpha or other effects on the font, you may need to make sure you embed the typeface characters you are using into the SWF - Select a text field and view the properties

[Flashcoders] Caching loaded bitmaps

2009-12-30 Thread Omar Fouad
Hi all, I have some sort of game that requires to load some bitmaps before it starts. I do this by using the Loader class, and shifting from an array of image Links on each time the Event.COMPLETE fires so that the images load one by one. The project is a FLA file (CS4) using document class and

Re: [Flashcoders] Working with assets from auth. environment

2009-12-30 Thread Alexander Farber
Thank you and happy new year to all subscribers :-) On Wed, Dec 30, 2009 at 4:29 PM, Glen Pike postmas...@glenpike.co.uk wrote:     Are you making sure that you embed the font in the authoring environment?   If you are using rotation / alpha or other effects on the font, you may need to make

RE: [Flashcoders] Shared objects in AIR

2009-12-30 Thread David Hunter
try looking at File and FileStream classes on adobe livedocs. the File class lets you set a path for a file you want to write and plenty of other operations. the FileStream class reads and writes files. http://help.adobe.com/en_US/AS3LCR/Flash_10.0/index.html hope that helps, david Date: Tue,

Re: [Flashcoders] Shared objects in AIR

2009-12-30 Thread Maximilian Herkender
I thought so too, but I'm not really sure where they should go. On Wed, Dec 30, 2009 at 6:29 PM, David Hunter davehunte...@hotmail.com wrote: try looking at File and FileStream classes on adobe livedocs. the File class lets you set a path for a file you want to write and plenty of other

[Flashcoders] Re: Caching loaded bitmaps

2009-12-30 Thread Omar Fouad
No one? On Wed, Dec 30, 2009 at 10:54 PM, Omar Fouad omarfouad@gmail.comwrote: Hi all, I have some sort of game that requires to load some bitmaps before it starts. I do this by using the Loader class, and shifting from an array of image Links on each time the Event.COMPLETE fires so