Re: [Flashcoders] BitmapData dump ?

2006-01-21 Thread Yehia Shouman
Thank you Ralph, I think I'll use onEnterFrame with a progress bar showing the status of the saving process progress. It'll look a bit lame being slow, but if thats what we can do now then i hope it'll look ok the problem is that I am saving off 400x200 bitmapData instance multiplied by X layers

[Flashcoders] Javascript Integration kit causes page flicker

2006-01-21 Thread Jim Kremens
Hi all, I'm using the JS integration kit in a project that requires Flash 7. It's working, but in certain cases, it causes the page to flicker. The page doesn't refresh, which is weird, it just flickers... Here's what I'm doing: //call a js function from Flash proxy.call('play'); //here's

Re: [Flashcoders] Final Class Question

2006-01-21 Thread Nathan Derksen
A few points: First, you are not actually setting the amMessage and pmMessage properties anywhere. The variables that you are passing through the constructor actually obscure those two properties because they share the same variable name; they don't copy any data. Second, it's a better

Re: [Flashcoders] Final Class Question

2006-01-21 Thread Chris Kennon
Hi, Very helpful best practices information, however, as previously stated, this is my first Class. The custom greeting still returns undefined. It's probably how I call them in the class instance constructor? import com.bushidodeep.TimeStamp; // var my_ts:TimeStamp = new TimeStamp(this,

Re: [Flashcoders] Final Class Question

2006-01-21 Thread Maximilian Reuss
Hi Chris, for me, this is right all worked fine output white on white 0:43:Top of The Morning check again max am Samstag, 21. Januar 2006 um 22:42 schrieben Sie: Hi, Very helpful best practices information, however, as previously stated, this is my first Class. The custom

Re: [Flashcoders] Final Class Question[It's Done!!]

2006-01-21 Thread Chris Kennon
Hi, Removed the ASO file, checked again. All is good. Thanks to everyone for there help and wisdom. It is hoped this experience inspires more informed contributions to the list. Return True, Christopher Kennon Principal/Designer/Programmer -Bushidodeep http://bushidodeep.com/

Re: [Flashcoders] Final Class Question[Correction]

2006-01-21 Thread Chris Kennon
Hi, Removed the ASO file, checked again. All is good. Thanks to everyone for THEIR help and wisdom. It is hoped this experience inspires more informed contributions to the list. Return True, Christopher Kennon Principal/Designer/Programmer -Bushidodeep http://bushidodeep.com/

Re: [Flashcoders] Final Class Question

2006-01-21 Thread Chris Velevitch
I agree with Nathan's observations, amMessage and pmMessage properties are being obscured by the constructor arguements of the same name in the class constructor and those properties aren't being set anywhere, which is why the result is undefined. Chris, did you change your class as per Nathan's