RE: [Flashcoders] AS2 SWFs with pageFlipper component
I have an old demo version of pageflip (oparigrafika pageflip_v22.fla) That version has a removeML() function: function removeML(){ Mouse.removeListener(mousecontroll); } The Help (embedded in the file) stipulates that this function must be called before unloading the pageflip or else the next pageflip you load the mouselistener will not work. Worth knowing? Regards, Keith Reinfeld Home Page: http://keithreinfeld.home.comcast.net -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Jim Lafser Sent: Friday, February 05, 2010 11:27 AM To: Flash Coders List Subject: Re: [Flashcoders] AS2 SWFs with pageFlipper component Might be a problem with flash player caching classes. If you use the same class in your AS2 SWFs and have a static variables it can cause this type of problem. --- On Thu, 2/4/10, Alan Neilsen wrote: From: Alan Neilsen Subject: [Flashcoders] AS2 SWFs with pageFlipper component To: "'flashcoders@chattyfig.figleaf.com'" Date: Thursday, February 4, 2010, 9:09 PM I have 12 x AS2 SWFs (build in CS4 Pro) that each use a purchased flipbook component called pageFlipper. These SWFs are AS2 because this component doesn't work in AS3. The 12 SWF using this component are loaded at various places into a main interface that is AS3, also built in CS4 Pro. When I run the interface and go to a screen where one of the AS2 SWFs is loaded it works fine, but when I go to any of the other screens where another of the AS2 SWFs is loaded, the flipbook does not appear. It does not matter which order I try this; whichever of the 12 AS2 SWFs that loads first is the only one that works. In each case the loaded AS2 SWF is removed from the main program with loader_clip.removeChild(ldr) when I navigate away from the screen where it was loadd. It seems to me that I also need to do something to remove the component as well so it will work again when a subsequent SWF using it is loaded. Can anyone shed any light on why it only works on the first SWF loaded, and what I might do to make it work when subsequent SWFs are loaded? Alan Neilsen This message is for the named person’s use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or; lost by any mistransmission. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. You must not directly or indirectly, use, disclose, distribute, print or copy any part of this message if you are not the intended recipient. GOULBURN OVENS INSTITUTE OF TAFE and any of its subsidiaries each reserve the right to monitor all e-mail communications through its networks. Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorised to state them to be the views of any such entity. # This e-mail message has been scanned for Viruses and Content and cleared by MailMarshal # ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders No virus found in this incoming message. Checked by AVG - www.avg.com Version: 9.0.733 / Virus Database: 271.1.1/2668 - Release Date: 02/05/10 01:35:00 ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
Re: [Flashcoders] AS2 SWFs with pageFlipper component
Might be a problem with flash player caching classes. If you use the same class in your AS2 SWFs and have a static variables it can cause this type of problem. --- On Thu, 2/4/10, Alan Neilsen wrote: From: Alan Neilsen Subject: [Flashcoders] AS2 SWFs with pageFlipper component To: "'flashcoders@chattyfig.figleaf.com'" Date: Thursday, February 4, 2010, 9:09 PM I have 12 x AS2 SWFs (build in CS4 Pro) that each use a purchased flipbook component called pageFlipper. These SWFs are AS2 because this component doesn't work in AS3. The 12 SWF using this component are loaded at various places into a main interface that is AS3, also built in CS4 Pro. When I run the interface and go to a screen where one of the AS2 SWFs is loaded it works fine, but when I go to any of the other screens where another of the AS2 SWFs is loaded, the flipbook does not appear. It does not matter which order I try this; whichever of the 12 AS2 SWFs that loads first is the only one that works. In each case the loaded AS2 SWF is removed from the main program with loader_clip.removeChild(ldr) when I navigate away from the screen where it was loadd. It seems to me that I also need to do something to remove the component as well so it will work again when a subsequent SWF using it is loaded. Can anyone shed any light on why it only works on the first SWF loaded, and what I might do to make it work when subsequent SWFs are loaded? Alan Neilsen This message is for the named person’s use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or; lost by any mistransmission. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. You must not directly or indirectly, use, disclose, distribute, print or copy any part of this message if you are not the intended recipient. GOULBURN OVENS INSTITUTE OF TAFE and any of its subsidiaries each reserve the right to monitor all e-mail communications through its networks. Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorised to state them to be the views of any such entity. # This e-mail message has been scanned for Viruses and Content and cleared by MailMarshal # ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
[Flashcoders] AS2 SWFs with pageFlipper component
I have 12 x AS2 SWFs (build in CS4 Pro) that each use a purchased flipbook component called pageFlipper. These SWFs are AS2 because this component doesn't work in AS3. The 12 SWF using this component are loaded at various places into a main interface that is AS3, also built in CS4 Pro. When I run the interface and go to a screen where one of the AS2 SWFs is loaded it works fine, but when I go to any of the other screens where another of the AS2 SWFs is loaded, the flipbook does not appear. It does not matter which order I try this; whichever of the 12 AS2 SWFs that loads first is the only one that works. In each case the loaded AS2 SWF is removed from the main program with loader_clip.removeChild(ldr) when I navigate away from the screen where it was loadd. It seems to me that I also need to do something to remove the component as well so it will work again when a subsequent SWF using it is loaded. Can anyone shed any light on why it only works on the first SWF loaded, and what I might do to make it work when subsequent SWFs are loaded? Alan Neilsen This message is for the named persons use only. It may contain confidential, proprietary or legally privileged information. No confidentiality or privilege is waived or; lost by any mistransmission. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. You must not directly or indirectly, use, disclose, distribute, print or copy any part of this message if you are not the intended recipient. GOULBURN OVENS INSTITUTE OF TAFE and any of its subsidiaries each reserve the right to monitor all e-mail communications through its networks. Any views expressed in this message are those of the individual sender, except where the message states otherwise and the sender is authorised to state them to be the views of any such entity. # This e-mail message has been scanned for Viruses and Content and cleared by MailMarshal # ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders