Re: [Flashcoders] Firefox popup blocker and flash 9

2008-05-30 Thread Dennis - I Sioux
Viktor and Glen are right.. The user has to initiate the geturl and it has to be on a onRelease so it's as user friendly as possible.. by this way after pressing he can decide to not releasing on the button anyway. the allowScript access as a param is only needed when you'r swf is on a

[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).

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

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

2008-05-30 Thread Dennis - I Sioux
._totalframes would be the one then. In a onEnterframe.. in combination with ._currentframe With kind regards, Dennis Isioux - Original Message - From: Paul Andrews [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, May 30, 2008 11:56 AM Subject:

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 some

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

2008-05-30 Thread Paul Andrews
Thanks Glenn - I wan't worried about using the frame count, I just wondered if there was another mechanism I hadn't thought of. Unfortunately, I don't think this is acheivable from AS3 - it won't have access to control the AS2.0 clips timeline. Paul - Original Message - From: Glen

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

2008-05-30 Thread Paul Andrews
- Original Message - From: Dennis - I Sioux [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, May 30, 2008 11:20 AM Subject: Re: [Flashcoders] AS 2.0 (AS 3.0) question - knowing when aMovieClipis on it's last frame. ._totalframes would be the

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

2008-05-30 Thread Paul Andrews
- Original Message - From: Ian Thomas [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, May 30, 2008 11:31 AM Subject: Re: [Flashcoders] AS 2.0 (AS 3.0) question - knowing when a MovieClipis on it's last frame. Hello Paul, Regarding messaging

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

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

2008-05-30 Thread Ian Thomas
On Fri, May 30, 2008 at 11:41 AM, Paul Andrews [EMAIL PROTECTED] wrote: - Original Message - From: Ian Thomas [EMAIL PROTECTED] To: Flash Coders List flashcoders@chattyfig.figleaf.com Sent: Friday, May 30, 2008 11:31 AM Subject: Re: [Flashcoders] AS 2.0 (AS 3.0) question - knowing when

Re: [Flashcoders] Cross domain AS3

2008-05-30 Thread BlackMail
Are you working in one domain (sandbox) ? I so, then probably you need to fix the relative path. If your swf is stored in some folder ie: http://www.mydomain.co.uk/banner/flash/MY.SWF and it needs to load the image from: http://www.mydomain.co.uk/banner/flash/uploadedimage/45/sunset.jpg You can

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

2008-05-30 Thread Paul Andrews
Thanks, I'll check that out. Paul - Original Message - From: Rich Shupe [EMAIL PROTECTED] To: FlashCoders flashcoders@chattyfig.figleaf.com Sent: Friday, May 30, 2008 11:51 AM Subject: Re: [Flashcoders] AS 2.0 (AS 3.0) question - knowing when aMovieClip is on it's last frame.

[Flashcoders] windows user login data and active directory

2008-05-30 Thread tom rhodes
hi all, i would like to know if it is possible to access windows user login data, to use the same information in a flash intranet as a login, also is it possible to get at active directory data to use as part of a flash app? the client would like this project to be an active desktop but i think

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

2008-05-30 Thread Merrill, Jason
Thanks Glenn - I wan't worried about using the frame count, I just wondered if there was another mechanism I hadn't thought of. Another possible mechanism is to broadcast a custom event from the swf's timeline when the end is reachded and listen for it elsewhere. However, if one .swf is AVM1

RE: [Flashcoders] windows user login data and active directory

2008-05-30 Thread Merrill, Jason
It's possible if your enterprise uses Windows Single Sign On ( I know because I've done it :) ) - you would need access to that data and then, for example, a .NET script to pass that information via Flashvars or ExternalInterface or whatever to Flash. But it's not possible using Flash alone, and

[Flashcoders] Flash CS3: CellRenderers in loaded swfs don't work if the parent swf exports a cellrenderer?

2008-05-30 Thread Rich Rodecker
I have a situation where I have a swf, let's call it child.swf, contains a List component which makes use of a custom cell renderer, CustomCellRenderer, which extends CellRenderer. On it's own, everything works fine. My problem is trying to load it into Main.swf, which also has a List in it's

[Flashcoders] Re: Flash CS3: CellRenderers in loaded swfs don't work if the parent swf exports a cellrenderer?

2008-05-30 Thread Rich Rodecker
Figured it out...it was due to hacking UIComponent: http://www.visible-form.com/blog/one-note-about-hacking-cs3s-uicomponent-to-fix-eventrender/ On Fri, May 30, 2008 at 11:09 AM, Rich Rodecker [EMAIL PROTECTED] wrote: I have a situation where I have a swf, let's call it child.swf, contains a