Flash movie slowing with each loop?

My main flash movie is made up with scenes, on each scene I have used the UILoader component to load external swf content to the main movie, the first one works fine but gradually with each loop the movie slows down, i have a globe in one scene which is looking really juddery... Can anyone help?
Thanks
Darren

First off, you should not use scenes - they have never really worked all that well, and just lead to problems. Aside from that, if you're adding listeners to your loaders you need to remove them - or use weak references, which you should always be doing anyway. Have you looked at task manager to see if successive loops are using more and more ram and/or more and more cpu cycles?

Similar Messages

  • SCCM 2012 PowerShell script gets progressively slower with each machine added to a collection

    Firstly, I hope this question firs in this forum.
    I have a PowerShell script that I created the imports a CSV file and adds the machine names to a collection as a direct membership. There are 5000 machines total in the list. When the script first starts, the average per machine is just a few tenths of a
    second. Once it reaches about 10% the average is up to almost 4 seconds and that time is getting larger with each machine. I tried using the CMDLets for SCCM but they were even slower than the WMI seemed to be.
    What is the reason for this increase?
    Is there anything I can do to not have this happen?
    My script:
    $ErrorActionPreference= 'continue'
    $FilesInFolder = Get-ChildItem $PSScriptRoot
    $CSVFiles = $FilesInFolder | where {$_.extension -eq ".csv"}
    $SiteCode = "US1"
    Function AddToCollection-WithWMI
    ForEach ($File in $CSVFiles)
    $CollectionStart = Get-Date
    $CollectionName = $File.Name.TrimEnd(".csv")
    $PClist = Import-CSV $File.FullName
    Write-Host "Populating Collection: " $CollectionName
    $i = 1
    $PCRollingTime = New-Object System.TimeSpan
    ForEach($PC in $PClist)
    $PCStart = Get-Date
    $ResourceName = $PC.SerialNumber
    Write-Host $i "of" $PClist.Count
    $ResourceQuery = Get-WmiObject -Namespace "Root\SMS\Site_US1" -Class SMS_R_SYSTEM -Filter "Name = '$ResourceName'"
    $CollectionQuery = Get-WmiObject -Namespace "Root\SMS\Site_US1" -Class SMS_Collection -Filter "Name = '$CollectionName' and CollectionType='2'"
    $CollectionQuery.Get()
    IF($ResourceQuery -ne $null)
    #Create new direct membership rule
    $NewRule = ([WMIClass]"\\Localhost\root\SMS\Site_US1:SMS_CollectionRuleDirect").CreateInstance()
    $NewRule.ResourceClassName = "SMS_R_System"
    $NewRule.ResourceID = $ResourceQuery.ResourceID
    $NewRule.Rulename = $ResourceQuery.Name
    #Commit changes
    $CollectionQuery.CollectionRules += $NewRule.psobject.baseobject
    $CollectionQuery.Put() | Out-Null
    $NewRule = $null
    ELSE
    Write-Host "No Device ID found for: " $PC.SerialNumber
    $CollectionQuery = $null
    $ResourceQuery = $null
    $PCFinish = Get-Date
    $TimeSpan = New-TimeSpan -Start $PCStart -End $PCFinish
    $PCRollingTime = $TimeSpan + $PCRollingTime
    If(($i % 25) -eq 0)
    $CurrentAvgPerPC = $PCRollingTime.TotalSeconds / $i
    Write-Host "The current average is" $CurrentAvgPerPC "seconds."
    $SecondsToETA = ($CurrentAvgPerPC * ($PClist.Count - $i))
    $ETA = Get-Date
    $ETA = $ETA.AddSeconds($SecondsToETA)
    Write-Host "The Estimated time of complete is" $ETA
    If(($i % 250) -eq 0)
    $PCRollingTime
    $i++
    $CollectionQuery = Get-WmiObject -Namespace "Root\SMS\Site_US1" -Class SMS_Collection -Filter "Name = '$CollectionName' and CollectionType='2'"
    $CollectionQuery.Get()
    #Initiate the collection evaluator
    $CollectionQuery.RequestRefresh()
    $CollectionFinish = Get-Date
    AddToCollection-WithWMI

    I haven't checked the complete code, but it doesn't look very efficient. For example I would take the collection query out the loop for all the pcs, simply because it's always the same and would save you about 4999 queries.
    My Blog: http://www.petervanderwoude.nl/
    Follow me on twitter: pvanderwoude
    ^^ This 
    Additionally, you could likely replace most of the WMI calls you do with the built in SCCM PowerShell cmdlets.  The two lines below will check to see if a Device Object for a specific PC exists and if it does, adds it to your collection
    $PCID = Get-CMDevice -Name $PC.SerialNumber
    if ($PCID -ne $null) {
    Add-CMDeviceCollectionDirectMembershipRule -CollectionName $CollectionName -ResourceId $PCID
    If you want to check to see if the collection exists before trying to add devices to it, you can use the Get-CMDeviceCollection cmdlet.
    Get-CMDeviceCollection -Name $CollectionName
    Moo.

  • How to have Flash movie resize with rest of webpage

    Hi,
    I ran a search for this but couldn't find anything. Is there code I can write into my webpage (using dreamweaver) that will make my flash movie get larger along with the rest of my webpage when the viewer zooms their internet explorer 8 browser? Here's a link to an example. Looks fine when page is viewed at 100% but above that everything zooms except the movie.
    www.empowerments.net/canary.html
    Thanks for your help,
    James

    Thanks again for your time but it seems we're not on the same page (pun intended!).
    I do appreciate you trying to help me and I understand how easy it is to misread the question perameters.
    When your reply said "The Zoom does create a white space because it "zooms" the background image and text only.
    The Flash content isn't set to zoom with it apparently"
    it actually just stated what I said was the problem in my original post.
    I've already said the flash content looks fine at 100% and is only a problem when zoomed in by the internet explorer browser.
    The help I'm looking for is maybe a tip on some html code (like rescale = true or something) that I can write into the web page (via Dreamweaver) that tells the flash content to scale up with the rest of the page when zoomed.
    Does anyone else have any suggestions?
    Thanks again for your time and willingness, Mac=Win=Me!
    James

  • Aligning flash movie edges with jpg's in HTML

    I have created a flash movie that is 766 px wide by 750 px
    high. The html page that the flash movie is embedded in uses jpg.
    images to fill the remaiming browers area. (so it appears to the
    viewer that flash movie and html page are one seemless page)
    The problem I am having is matching (aligning) the edges of
    the flash movie with the jpg images. I can get it very close, but
    it never seems exactly right. (The edges of the flash movie have a
    gradient and some color change.)
    You can view my work in progress at:
    http://www.awitest.com/index_silver.html
    My questions is: is there a simpler, less time consuming way
    to get the edges of the flash movie line up correctly with the
    jpg's in the html???
    By the way I have Design Premium CS3, if any of those other
    programs can help with this problem.
    Thanks for any advice!

    yes, is is.
    you can use this link.
    http://de.selfhtml.org/css/eigenschaften/positionierung.htm#position
    the dicription is german, but there are no problems to use
    the code, i think.
    working with cs3, i use the html of flash an delete all the
    java-text. it's possible to use the objekt-tag in the
    div-tag.

  • Load flash movie which with sound problem

    Hi, all,
    I am doing a flash which with audio, the audio about 3-4 mins. But when i use another flash movie to load that flash mov with sound (using load movie function), cannot hear any voice. Why is it?
    The flash movie with sound is use actionscript to attach the sound, when i test the movie, it is work. When it comes to load from another movie, it doesn't work. Anyone can help me to solve it?
    Thanks.

    What version of Actionscript are you using?

  • Move MCs with for loop?

    I'm trying to figure out a way to move movie clips with a for loop
    I've got 10 dots called dt1-dt10 and I want to be able to set them all to y = 200.
    I understand i can set i=1;i<11;i++
    like
    for(i=1;i<11;i++){
    dt+i._y = 200;}
    or
    for(i=1;i<11;i++){
    String("dt"+i)._y = 200;}
    but the rest of it is a mess and either doesn't work, or glitches. I have yet to find a for loop help file for moving multiple movie clips.

    If you just want to immediately change the positions of the instances, then using a for loop will work okay, you just need to use the bracket notation [ ] to have strings be interpreted as instance names...
    for(i=1;i<11;i++){
         this["dt"+i]._y = 200;

  • Flash Movie export with Keynote

    Hi, I am using Keynote this time mainly to make a Flash movie for a website. However, when I export the movie to SWF format,the file is quite large (About 9mb) too large for use online.
    Does anyone know, is there a way to reduce this filesize? I looked to see if it is possible to make the canvas smaller than 800x600, as I only really need it to be about 500x400. Didn't see a place to make it smaller than 800x600.
    Any reccomendations would be great, thanks.

    There is a program that reduces flash file sizes
    http://www.eltima.com/products/flash-optimizer-mac/
    It compresses the file size, not sure if it resizes the dimensions

  • Wired Keyboard issues with Flash / general slowness with LION

    So I upgraded to Lion about a month or so ago.  All has not been great.  I am running a 2009 Dual Core Intel iMac with 3 GB ram.  One thing I notice is that initially certain flash support was NOT supported (mainly web cam support through flash on web sites).  So web sites offering chat clients with cam support as an example - the performance would lag badly where typing messages would skip letters and leave nothing but garble.  I attempted to try different browsers, but found the results to be disappointing:
    Safari:  Web cam support through web sites was simply broken - even manually trying to alter adobe settings would not get you any further
    Firefox 5:  You had to set permissions for web cam support prior to launching a web site as flash settings to enable / disable it within the web site were simply not useable
    Chrome:  Settings worked, but the performance was so slow, if using a web chat client and a web cam at the same time, it was almost impossible to type proper words unless you typed a character a minute.
    I realize there has been a Lion update recently (a few weeks ago) and after the update, most of these issues seemed to be fixed.  But then, Adobe came out with a FLASH update and now performance is lagging once again to the point where web cam and chat is almost not useable.
    Is there anything that can be done to work around this issue?

    Please read teh directions for an SMC reset:
    SMC RESET
    Shut down the computer.
    Unplug the computer's power cord and all peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.
    PRAM RESET
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • Slowly I turned.... Why is my Quad Core MacBook Pro getting slower with each Lion update?

    I upgraded to Lion on my 20011 15" 2.0GHZ Quad Core MacBook Pro. The machine crashed at least 7 times (reports forwarded). I upgraded to 10.7.1 hoping for the crashes to go away. It began to crashed once a week. On checking the console reports Virus Barrier and Kaspersky (****!) used with Parallels seemed to be causing the crashes.  Turn those puppies off and the crashes disappeared.  HOWEVER, the computer is slow; opening mail seems 50% slower than on my MacBook 13".  Today after spending 3 hours updating to 10.7.2, all apps seems to be dragging.  Any ideas out there?
    Michael

    OK. Here's some test results. The most intense process I use on my Macs is using Handbrake to encode either DVDs or mkv files to mp4 files which generally pushes all cores to the max. I am using the latest 64bit version of Handbrake on both Macs.
    So I took a sample mkv file of 65 seconds length and ran it using the same settings on both the Mac Pro (2 x 3 GHz Dual-Core Intel Xeon 8GB RAM) and the Macbook Pro (2.66 GHz Intel Core i7 4GB RAM), straight after starting up both Macs so that there was plenty of RAM to spare on both. I ran the test two times on each Mac and got similar results both times, with the best results on each machine being as follows:
    Mac Pro: max RAM used: 380MB, Time for encode: 102 seconds
    Macbook Pro: max RAM used: 495MB, Time for encode: 84 seconds
    This was for a 2-pass encoding with Turbo first pass to 2200kbps MP4 file from 720p mkv file.
    So the Macbook Pro is coming in considerably quicker for this particular task. I'm not sure why the Mac Pro used less RAM, and whether this is the main factor in the time difference. Like I said, there was plenty of unused RAM on both Macs when I ran the test. I am no expert on the inner workings of Macs!
    Needless to say though, I am happy with the results and very happy with the new Macbook Pro.
    Nick

  • Sizing the Flash Movie Window  with HTML

    Hello,
    I don't know why I'm having such a problem with this, but I'm
    trying to open my Flash Player in a locked dimention (600 x 450).
    what's happening is an <a href is opening the html file
    published with the swf... which in turn of course launches the
    swf... I've been trying to make the swf pop up at 600x450 but so
    far no luck. It just pops up as the same size as the previous
    window. Any ideas what I'm doing wrong here? oh, i'd also like to
    have the swf pop up without the menus/toolbars/etc.
    Thanks!

    You don't say or show what you've tried, so it's difficult to
    show what
    you've done wrong.
    From your description it sounds like you want to open a new
    custom
    chromeless window. To do that, you need to use the Javascript
    window.open() method.
    You can find thousands of examples in this forum with a
    simple search.
    You can also google "window.open" and get thousands more
    examples.

  • Mapping to new node with each loop

    Does anyone know how to add a new node to a message each time through a loop (in a BPM) like this....
    Source message before the first mapping iteration
    <source>
    <data>first occurence</data
    </source>
    Target message after the first mapping iteration
    <target>
    <record>
    <data>first occurence</data>
    </record/
    </target>
    Source message before the second mapping iteration
    <source>
    <data>second occurence</data
    </source>
    Target message after the second mapping iteration
    <target>
    <record>
    <data>first occurence</data>
    </record/
    <record>
    <data>second occurence</data>
    </record/
    </target>

    Hi,
    Mapping is based on he data passed. i.e. if the occurance of the Mapping fields is 0...unbounded. Then you can have multiple nodes.
    But if you will be looking as 1st instance of mapping will create one node and then another instance will increment the nodes. Then I doubt this could be directly possible.
    Thanks
    swarup

  • Photo flash goes off with each call or timer. Any clue?

    my iPhone photo flash goes off w/ every call or timer?
    any clue would help. thank you.

    This is covered in the User's Guide and is a feature that must be turned on.
    Settings > General > Accessibility > LED Flash for Alerts

  • Flash swf movie player with chaptering

    Hi guys, I'm looking for an off the shelf paid flash player (or free if available) that will allow me to play SWF's (not FLV's or videos).
    I have 5 .swf animations (1.swf, 2.swf, 3.swf, 4.swf, 5.swf).
    I would like to have a player that if i click play, will play through the 5 animations one after the other seamlessley - however i may wish to skip through chapters (each .swf will be a chapter) by clicking ahead on a playhead or by selecting a chapter title from a drop down.
    The chapters need to be seperate swf's because they will used individually aswell as as one piece.
    So in effect I really simply want a player to watch all my flash movies concurrently with the ability to click ahead in the player and have it load the relevant .swf if need be!
    Any suggestions?

    Though this is not an extreme task to achieve, I'm not aware of any "you don't need to program anything" kinds of templates that allow you to quickly sequence a series of SWF files. But, I understand this kind of requirement if you aren't an AS3 programmer yourself (or maybe you are, and you just want to save time, which we all do!). Many times it can be worth paying $40 for some template/component versus taking the time ourselves (1 hour, someteims dozens of hours).
    If this were programmed from scratch, it would be a combination of these concepts (sorry, no code here):
    The Loader class to load in your other AS3 SWF files
    Using an ENTER_FRAME event (in your application, not in the SWFs, which I'll assume you don't want to edit) to know when a SWF has reached the last frame, at which point you unload the current SWF and load a new SWF.
    An array that lists out your SWF files.
    Detection of when the final file has completed.
    In addition, possible some UI controls that would:
    Allow for the pausing/playing the current SWF (which would only control their main timeline; dealing with nested MovieClips with their own timelines would require add'l work).
    Allow for the instant skipping to the Next or Previous SWF file.
    Allow for the Restarting of the presentation when the final SWF has completed (or the option ability to loop to the 1st SWF at this point)
    The end result would be your template, that could be made fully reusable by coupling it with a really small XML file:
    The XML would become your list of SWF files
    This could also control which UI controls you have available
    Hopefully this gives you a general (abstract) sense of things you'd need to program (or find somebody to program...at which point the'll have their own take on how they'd do this).

  • Big issue with playing Flash movie in IE 6.0 with Windows SP2

    This is a multi-part message in MIME format.
    ------=_NextPart_000_006E_01C699E5.68468390
    Content-Type: text/plain;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    I face a big issue with Flash 8 movies playing in IE6 with
    Windows XP =
    SP2, as follows :
    I have created a menu with a Flash movie for each button and
    a movie =
    with scrolling images,
    and when the HTML page opens we need to click once on the
    button or the =
    scrolling images=20
    to make-it working.
    see :
    http://piscine-et-spa.cybergraphik.net
    Useless to say that the same movies are playing well in IE6
    with Windows =
    SP1 !...
    Anybody can help ?
    Thanks.
    ------=_NextPart_000_006E_01C699E5.68468390
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Diso-8859-1">
    <META content=3D"MSHTML 6.00.2800.1555"
    name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY bgColor=3D#ffffff>
    <DIV><FONT face=3DVerdana size=3D2>I face a big
    issue with =
    Flash 8 movies=20
    playing in IE6 with Windows XP SP2, as follows
    :</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>I have created
    a menu with a Flash =
    movie for each=20
    button and a movie with scrolling
    images,</FONT></DIV>
    <DIV><FONT face=3DVerdana size=3D2>and
    w</FONT><FONT face=3DVerdana =
    size=3D2>hen the=20
    HTML page opens we need to click once on the button or the
    scrolling =
    images=20
    </FONT></DIV>
    <DIV><FONT face=3DVerdana size=3D2>to make-it
    working.</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>see : <A=20
    href=3D"
    ergraphik.net</A></FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>Useless to say
    that the same movies =
    are playing=20
    well in IE6 with Windows SP1 !...</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>Anybody can
    help ?</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana
    size=3D2>Thanks.</FONT></DIV></BODY></HTML>
    ------=_NextPart_000_006E_01C699E5.68468390--

    This is a multi-part message in MIME format.
    ------=_NextPart_000_0018_01C69A05.5FA39D70
    Content-Type: text/plain;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    You've run into the famous IE Flash fix implemented in SP2.
    Supposed to =
    be a security thing .. yeah .. right. Upgrade Dreamweaver to
    8.02 to =
    get the fix implemented in the program or visit the technote
    here:
    http://www.adobe.com/devnet/activecontent/articles/devletter.html
    Just don't forget to upload the Scripts folder and file. :)
    --=20
    Nancy Gill=20
    Adobe Community Expert
    BLOG:
    http://www.dmxwishes.com/blog.asp=20
    Author: Dreamweaver 8 e-book for the DMX Zone
    Co-Author: Dreamweaver MX: Instant Troubleshooter (August,
    2003)=20
    Technical Editor: DMX 2004: The Complete Reference, DMX 2004:
    A =
    Beginner's=20
    Guide, Mastering Macromedia Contribute=20
    Technical Reviewer: Dynamic Dreamweaver MX/DMX: Advanced PHP
    Web =
    Development=20
    "Pascal" <[email protected]> wrote in message =
    news:[email protected]...
    I face a big issue with Flash 8 movies playing in IE6 with
    Windows XP =
    SP2, as follows :
    I have created a menu with a Flash movie for each button and
    a movie =
    with scrolling images,
    and when the HTML page opens we need to click once on the
    button or =
    the scrolling images=20
    to make-it working.
    see :
    http://piscine-et-spa.cybergraphik.net
    Useless to say that the same movies are playing well in IE6
    with =
    Windows SP1 !...
    Anybody can help ?
    Thanks.
    ------=_NextPart_000_0018_01C69A05.5FA39D70
    Content-Type: text/html;
    charset="iso-8859-1"
    Content-Transfer-Encoding: quoted-printable
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
    Transitional//EN">
    <HTML><HEAD>
    <META http-equiv=3DContent-Type content=3D"text/html; =
    charset=3Diso-8859-1">
    <META content=3D"MSHTML 6.00.2900.2912"
    name=3DGENERATOR>
    <STYLE></STYLE>
    </HEAD>
    <BODY bgColor=3D#ffffff>
    <DIV><FONT face=3DArial size=3D2>You've run into
    the famous IE Flash fix =
    implemented=20
    in SP2.  Supposed to be a security thing .. yeah ..
    right.  =
    Upgrade=20
    Dreamweaver to 8.02 to get the fix implemented in the program
    or visit =
    the=20
    technote here:</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2><A=20
    href=3D"
    http://www.adobe.com/devnet/activecontent/articles/devletter.html=
    ">
    http://www.adobe.com/devnet/activecontent/articles/devletter.html</A></=
    FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DArial size=3D2>Just don't
    forget to upload the Scripts =
    folder and=20
    file.   :)</FONT></DIV>
    <DIV><FONT face=3DArial
    size=3D2></FONT> </DIV><FONT
    face=3DArial =
    size=3D2>
    <DIV><BR>-- <BR>Nancy Gill <BR>Adobe
    Community Expert<BR>BLOG:  <A=20
    href=3D"
    asp</A>=20
    <BR>Author:  Dreamweaver 8 e-book for the DMX
    =
    Zone<BR>Co-Author: =20
    Dreamweaver MX: Instant Troubleshooter (August, 2003)
    <BR>Technical=20
    Editor:  DMX 2004: The Complete Reference, DMX 2004:
    A Beginner's=20
    <BR>Guide, Mastering Macromedia Contribute
    <BR>Technical Reviewer: =
    Dynamic=20
    Dreamweaver MX/DMX: Advanced PHP Web Development </DIV>
    <DIV> </DIV>
    <DIV></FONT> </DIV>
    <BLOCKQUOTE dir=3Dltr=20
    style=3D"PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT:
    5px; =
    BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
    <DIV>"Pascal" &lt;<A=20
    href=3D"mailto:[email protected]">[email protected]</A>&gt;
    =
    wrote in=20
    message <A=20
    =
    href=3D"news:[email protected]">news:e7r16q$7ko$1@forums=
    .macromedia.com</A>...</DIV>
    <DIV><FONT face=3DVerdana size=3D2>I face a big
    issue with=20
    Flash 8 movies playing in IE6 with Windows
    XP SP2, as =
    follows=20
    :</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>I have
    created a menu with a Flash =
    movie for=20
    each button and a movie with scrolling
    images,</FONT></DIV>
    <DIV><FONT face=3DVerdana size=3D2>and
    w</FONT><FONT face=3DVerdana =
    size=3D2>hen the=20
    HTML page opens we need to click once on the button or the
    scrolling =
    images=20
    </FONT></DIV>
    <DIV><FONT face=3DVerdana size=3D2>to make-it
    working.</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>see :
    <A=20
    =
    href=3D"
    ergraphik.net</A></FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>Useless to
    say that the same movies =
    are playing=20
    well in IE6 with Windows SP1 !...</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana size=3D2>Anybody can
    help ?</FONT></DIV>
    <DIV><FONT face=3DVerdana
    size=3D2></FONT> </DIV>
    <DIV><FONT face=3DVerdana =
    size=3D2>Thanks.</FONT></DIV></BLOCKQUOTE></BODY></HTML>
    ------=_NextPart_000_0018_01C69A05.5FA39D70--

  • Stopping a header reloading with each page

    I've had loads of conflicting advice on this one. Someone
    must know surely. How do I stop a flash movie from reloading each
    time a link button is clicked. In other words I just want the movie
    to load once on the home page and the integrated buttons to work as
    links to other html pages without the movie reloading on each
    page.

    well, lets start with the top one, since its an interesting
    way to do things anyway.
    when you look at your html file, (or asp or php) you'll be
    able to see the .swf file embedded in there. If you attach
    variables to the back of that using a script...
    "yourflashfile.swf?VARIABLEA=yesssss"
    that will pass a variable to your _root timeline called
    VARIABLEA with the value of "yesssss". You can use that directly in
    your html, but if you want the variable to change, you'll have to
    use a script. I like to use php because its free and open source,
    and very easy to find online help.
    http://www.13studios.com/whatever.php?VARIABLEA=no
    ------ doesn't work, dont click.
    Would pass your php file VARIABLEA with a value of no. So you
    see we can now connect the two by using a php echo command...
    <?php echo "$VARIABLEA" ?> or <?=$foo?>
    can you put that jumbled mess of answer together
    successfully? :D Lemme know!

Maybe you are looking for