Re: [Flashcoders] animating into bitmaps data, recording stop points

2008-04-10 Thread Mick G
I have this data available for each stop point so re-creating the bitmap isn't a big deal, but I am concerned with the lag in doing this because the animation is script generated and very complex i.e. it may take a few (or up to 5 seconds) to re-generate the data for each of these frames. The data

[Flashcoders] Detection Kit and Express install for flash player 9?

2008-04-10 Thread Vlado Krempl
Hello everyone! {If this posting has been done before I apologise} Regarding the Adobe Flash® Player Detection Kit and express Install. Is it actually possible to create a webpage that will detect which player version the viewer has and offer a express install without having to leave the

RE: [Flashcoders] movement

2008-04-10 Thread Lehr, Theodore M (N-SGIS)
No - on a PC viewing it in IE -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Rogers Sent: Tuesday, April 08, 2008 4:13 PM To: Flash Coders List Subject: Re: [Flashcoders] movement are you using safari? On Apr 8, 2008, at 2:41 PM,

[Flashcoders] Problem when applying dynamic mask [AS3]

2008-04-10 Thread Stuart (FunkDaWeb)
Hi i have another problem this time its to do with masking an object, here is the code that creates a movieclip then loads an image into to... bannerArea = newMovieClip(0xff, 0, 0, 420, 173); addChildAt(bannerArea,0); banner.loadImage(banners/ +

Re: [Flashcoders] Detection Kit and Express install for flash player 9?

2008-04-10 Thread Kenneth Kawamoto
The last time I checked, the Express Install did not work on my Mac at all. Kenneth Kawamoto http://www.materiaprima.co.uk/ Vlado Krempl wrote: Hello everyone! {If this posting has been done before I apologise} Regarding the Adobe Flash® Player Detection Kit and express Install. Is it

[Flashcoders] Variables can only be seen from outside of class

2008-04-10 Thread Alistair Colling
Hi there, this is a weird problem that I am sure has a really simple solution. I have written a custom class that is instantiated by another custom class. I pass a few variables to the class and I can trace them going in and check that they are set but when I go to use them again they

Re: [Flashcoders] Problem when applying dynamic mask [AS3]

2008-04-10 Thread jonathan howe
Hi, Stuart, This looks like a job for global function getDefinitionByName(), my new bff (learned from this list). You can't instantiate item just as a string. You need to call getDefinitionByName(item) and then use that as your class def. var classReference:Class = getDefinitionByName(item);

Re: [Flashcoders] movement

2008-04-10 Thread mario gonzalez
Make sure you set the window mode to opaque OR transparent... not default. That seems to make a huge difference: wmode not set: http://hugo.wddg.com/blogfiles/wmode/wmodedefault.html wmode set to opaque: http://hugo.wddg.com/blogfiles/wmode/wmodeopaque.html Both are using the same swf

RE: [Flashcoders] movement

2008-04-10 Thread Lehr, Theodore M (N-SGIS)
You are right - that does seem to make a difference - except I am noticing that set default it runs fine - it is when I make it transparent (which I need it to be) it then slows down -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of mario gonzalez Sent:

[Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-10 Thread Terry and Tammy
Morning, First post so hello. Hope to be of assistance to someone in near future. I am working through Essential ActionScript 3.0 and have downloaded Colin Moock's Tile Based classes. These classes fit a need I have for a set of games. I have googled for more info/links to see how others have

[Flashcoders] mp3 streaming interrupted

2008-04-10 Thread Andrew Sinning
I'm using AS2. In my movie, I have some external mp3 files that will start streaming and then just stop playing. It's as if the streaming suddenly stops, but this happens even if I'm playing the sound back locally. From the documentation, if looks like there are just two ways to stop a

Re: [Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-10 Thread Glen Pike
Instead of using Math.random() in the randomize function, you would set the ID to the row / column position: public function generate(numTiles:int):void { var numRows:int = getNumRows(); for (var i:int = 0; i numRows; i++) { for (var j:int = 0; j getNumCols(); j++) {

Re: [Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-10 Thread Glen Pike
http://www.tonypa.pri.ee/tbw/index.html is good for information on Tile Based Games, but the code is not AS3 this also links to: http://oos.moxiecode.com/ which also has lots of info about Flash Games - old too, but there loads of links to other resources at the bottom of the page. AS3 is

Re: [Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-10 Thread Pedro Taranto
there is a as3 version, but its not completed: http://www.tonypa.pri.ee/tbw/as3/index.html -- Pedro Taranto ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] Problem when applying dynamic mask [AS3]

2008-04-10 Thread Stuart (FunkDaWeb)
Couldnt get this to work for some reason i think its because its used from within a class, soon as the mask is applyed it throws an error! Ive decided to use SWFs insted of masking an image, but for some reason its not correctly sizing the file its loading! then the actual code to initiate the

Re: [Flashcoders] mp3 streaming interrupted

2008-04-10 Thread jonathan howe
When you instantiate the object sound, are you passing a movieclip that possibly disappears at some point? sound:Sound = new Sound(someClipThatGoesAway_mc); I don't actually know right now if that clip disappeared if the sound would stop (the link between Sound objects and MovieClips can be a

Re: [Flashcoders] mp3 streaming interrupted

2008-04-10 Thread Andrew Sinning
I figured out the problem -- the array holding the pointer to the instance if the sound object was getting indexed with an empty string (), and thus never actually getting added to the array, thus there was no persistent pointer to the instance. Andrew Sinning wrote: I'm using AS2. In

RE: [Flashcoders] Moock TileMap/TileSet/TileMapRenderer

2008-04-10 Thread Terry and Tammy
Great, Great, Great. Will implement new function and study links. Really, really appreciate it. Thanks, Terry -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Pedro Taranto Sent: Thursday, April 10, 2008 11:11 AM To: Flash Coders List Subject: Re:

[Flashcoders] Flash 8 Tree - calculated horizontal scrolling

2008-04-10 Thread Ricky Blaha
The Flash 8 Tree component has the *hScrollPolicy *property, but if this set to on, the Tree does not automatically show a horizontal scrollbar (presumably to save rendering time since it requires traversing all nodes to find the widest). But this seems like a pretty basic requirement that should

[Flashcoders] FP9 security update

2008-04-10 Thread Muzak
There's an FP update: 9,0,124,0 With some changes to: - allowScriptAccess - getURL(javascript:...) - cross domain policy files Read the article: http://www.adobe.com/devnet/flashplayer/articles/flash_player9_security_update.html regards, Muzak ___

Re: [Flashcoders] Detection Kit and Express install for flash player9?

2008-04-10 Thread Vlado Krempl
Thanks for your reply Kenneth. Just one question, when you design a flash webpage, do you us a HTML alternate page aswell? Cheers, v - Original Message - From: Kenneth Kawamoto [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Thursday, April 10, 2008

Re: [Flashcoders] Detection Kit and Express install for flash player9?

2008-04-10 Thread Kenneth Kawamoto
do you us a HTML alternate page aswell? Sometimes yes, sometimes no. It all depends on the nature of the site and requirements of the client. If it's an AS3 site with no HTML alternatives, since I personally cannot trust Express Install, I would show a link to the FP download page so that

Re: [Flashcoders] Detection Kit and Express install for flash player9?

2008-04-10 Thread Vlado Krempl
I agree, this situation is on top of my wishlist. Thanks again. - Original Message - From: Kenneth Kawamoto [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, April 11, 2008 8:33 AM Subject: Re: [Flashcoders] Detection Kit and Express install for