Re: [Flashcoders] AS 2.0 (AS 3.0) question - knowing when a MovieClip is on it's last frame.

2008-05-30 Thread Rich Shupe
Paul, This post includes sending data between AVM2 and AVM1 but it also shows manipulation of a movie clip. You could apply the same technique to the SWF PPT. http://www.learningactionscript3.com/2007/12/14/sending-data-from-avm2-to-av m1/ Rich http://www.LearningActionScript3.com On 5/30/08 5

Re: [Flashcoders] AS 2.0 (AS 3.0) question - knowing when a MovieClip is on it's last frame.

2008-05-30 Thread Ian Thomas
Hello Paul, Regarding messaging an AS2 swf within an AS3 swf, I've found Grant Skinner's SWFBridge reliable: http://www.gskinner.com/blog/archives/2007/07/swfbridge_easie.html HTH, Ian On Fri, May 30, 2008 at 10:56 AM, Paul Andrews <[EMAIL PROTECTED]> wrote: > AS2.0 question: > > I have so

Re: [Flashcoders] AS 2.0 (AS 3.0) question - knowing when a MovieClip is on it's last frame.

2008-05-30 Thread Glen Pike
If you are loading an AS2 SWF into an AS2 swf, you can cast the loaded SWF to a class of your choice by using the __proto__ method which is shown below: Then you write a class that has an enter frame / tick, etc. to monitor playback and cast your loaded SWF to an instance of this (Animation is

[Flashcoders] AS 2.0 (AS 3.0) question - knowing when a MovieClip is on it's last frame.

2008-05-30 Thread Paul Andrews
AS2.0 question: I have some AS2.0 swfs supplied to me (generated by captivate) that are loaded as part of my application. Unfortunately they don't have a stop() on the last frame, so they loop. Fortunately they are completely linear, so they play through from start to finish (and over again).