Flash fails after a SWF finishes loading

Hello, there is this flash animation on the web. It always worked perfectly before, but now, with the latest flash it does not: today, I tried watching it again. While it is not yet fully loaded, it works, I can see the preloader move, and if I right-click and select "play" it plays. But when it is done loading, it stops instantly and either shows the first frame of the movie, or goes grey in a second or two. If I right click on it, it says "movie not loaded'. I tried this movie on Firefox on Linux and two different versions of Windows, and on Internet Explorer. Same results. Tried downloading the SWF file and run it from my HDD, just in case, but still same results. Although, I was able to play it using Flash Decompiler Trilix. So, a couple of questions arises: Maybe the movie triggers some sort of a bug in the latest flash player? Anyone has an idea how to fix it? If it really is some sort of a bug, what should I do about it?
P.S. the link to the file, if it is relevant: http://uploads.ungrounded.net/298000/298601_PJ21ver3.swf
P.P.S. It is extremely unlikely, that the file was altered since the last time it worked, as the maintainers of the file became fully inactive way earlier than the file stopped working.
Thank You for Your time.
If You have even the slightest idea what could possibly be wrong and/or how to fix it, please, write. I will be grateful.

If you are creating the swf file using Flash software, then in your Publish Settings also select the option to have an html page output.  Then copy the code that embeds the swf in that published html file and paste it into the intended web page file.

Similar Messages

  • Web Banner with Video: How to start a flash animation ONLY after .flv is finished loading.

    Hi,
    I am making a 10 sec. web banner and am required to use a video that is on an external server. I had no problem getting the video file converted, uploaded to the external server and it is now playing back perfectly after exporting the .swf file.
    The problem I am having is that my animations (mostly text items, which are placed very carefully throughout the .flv movie) aren't matching up with the movie's movements (due to the .flv starting later due to streaming – I am assuming).
    How would I go about syncing these two things, so that the animations always line up exactly with the video's movements? Something like a preloader would be totally fine. I've also read about 'Cue Points' but they seem to be a little unnecessary for what should be a simple 10 sec. banner.
    Also the .flv itself is exactly 10 sec. long, but the banner is 13 sec. long so that the last screen (with the most important information) is shown statically for 3 sec. Should I be doing anything to compensate for this other than simply adding the 3 sec. in the timeline in flash, and letting the .flv restart when the entire .swf starts looping?

    use cuepoints in the video to sync your swf movieclips/timelines with your video.

  • How do i play my videos in flash file after moving SWF file to website?

    Hello all,
    I am having some problems showing my videos in flash after moving it anywhere besides my computer.
    I published my flash file once as a exe. file and sent it to another computer, where it all worked but my videos, which didn't show up at all.
    I also published them as SWF files, then put them up on my free website (where i don't have access to the ftp) and the videos still aren't there.
    The videos will play fine in an SWF file on my computer, but i am assuming when they are away from the videos, they don't have a source to access them.
    I also tried sending the videos along with the SWF files when sending to other computers and it still doesn't work.
    I now have a free hosted website (with wix.com if that makes any difference) with my flash work on, but no videos. I even tried to embed a youtube video into the scenes the videos are meant to appear, and put the videos on youtube, then i discovered you can't put that sort of HTML into flash.
    Does anyone know how to show the videos on these sort of website, or even better, how to keep them in original file when sending them, so they show on other computers.
    Sorry if I've waffled but I'm trying to clear up my situation .
    Any help would be super, many thanks,
    Flasher87

    i am using the website wix, so in order to put the swf file up you just click the "Upload SWF" button, so i don't know how i could put the videos along with the swf, the swf is just sat on the page once i upload it.
    second, when using this type of website do you know how i'd go about giving the website the permissions to play flv files?
    Thank you.

  • After web page finish, mouse movement and scroll up down very slow.

    After web page finish loading,both mouse movement and scrolling that page is very slow.
    I compare the same page on MS internet explorer and have no problem.
    p.s. I'm using intel core 2 dual on 4gb ddr3 windows vista 32bit.
    == URL of affected sites ==
    http://www.sanook.com

    Thanks for both of these answers. I am finding that I do not
    like the totally manual method all that much (but it does work).
    Using the PrintScreen-before-and-after-each-action method seems a
    little better for me. Either method requires way too much editing
    for a simple "let me show you" movie. I have moved on to version 3
    since it seems to behave a little better.
    I think it is odd how sometimes Captivate puts an action
    (like a mouse click) on a background from *two* slides previous.
    Why would it ever go backward - especially skipping over the
    previous slide to get an even older screen. If I have forced a
    screen capture, you would think it would stay with that.
    I realize that I am not using Captivate where its strengths
    seem to be (eLearning) but there must be a lot of people capturing
    demos of web-based material. Does everyone have this
    problem?

  • Malloc fails after 3.8 GB when jvm is loaded on SunOS 11

    All,
    I have a very simple c++ program that dynamically loads the jvm and in a loop tries to allocate memory in chunks of 512K. The malloc fails after about 3.8 GB is consumed. I don't use the jvm in any way other than just loading it. If I specify a java max heap size of 4096 MB I can allocate up 29 GB and then the malloc fails. If I subsequently increase the max heap size to 32GB then I can allocate more than 100GB.
    What is interesting is that this happens only on SunOS 11. Also it happens with java 1.6.0_26 and java 1.7 but not with java 1.6.0_22. If I don't load the jvm everything runs fine. This simple program runs without issues on SunOS 10, linux and windows with java 1.7.
    I have used truss with this program and I get the following output
    /1: nanosleep(0xFFFFFD7FFFDFF600, 0x00000000) = 0
    /1: brk(0xEAAEC000) = 0
    /1: nanosleep(0xFFFFFD7FFFDFF600, 0x00000000) = 0
    /1: brk(0xEABED000) = 0
    /1: nanosleep(0xFFFFFD7FFFDFF600, 0x00000000) = 0
    /1: brk(0xEACEE000) Err#12 ENOMEM
    This machine has 256GB of memory. I have been scratching my head for a while now and any help will be greatly appreciated.
    Pauli
    Edited by: 948514 on Jul 24, 2012 3:01 PM

    Find below the complete code that is encountering this issue
    #define MAX_MEMORY 10*1024*1024
    #define ALLOC_SIZE 512
    #define MAX_JAVA_HEAP "-Xmx256m"
    #define REPORTING_INTERVAL 1000
    #define USE_JAVA_VM 1
    #ifdef _WIN32
    #include <winsock2.h>
    #include "win_dlfcn.h"
    #else
    #include <dlfcn.h>
    #endif
    #include <jni.h>
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <string>
    #include <iostream>
    #include <list>
    using namespace std;
    //On Windows the JNI_CreateJavaVM function is called with __stdcall convention
    #ifdef _WIN32
    typedef jint (__stdcall jniCreateJavaVM_t) (JavaVM *, void **, JavaVMInitArgs *);
    typedef jint (__stdcall jniGetCreatedJavaVMs_t) (JavaVM *, jsize, jsize *);
    #else
    typedef jint (*jniCreateJavaVM_t) (JavaVM **, void **, JavaVMInitArgs *);
    typedef jint (*jniGetCreatedJavaVMs_t) (JavaVM **, jsize, jsize *);
    #endif
    static void *s_jvmLibrary = NULL;
    static JavaVMInitArgs s_vmArgs = {0};
    static JavaVMOption *s_vmOptions = NULL;
    string maxHeapSize = "-XmxMAX_JAVA_HEAP";
    void *
    GetJavaVMLibrary()
    std::string jvmLibrary;
    const char *pjvmLibrary = getenv("JAVA_HOME");
    if (!pjvmLibrary || !*pjvmLibrary)
    std::cerr << "JAVA_HOME has not been set" << std::endl;
    exit(1);
    jvmLibrary = std::string(pjvmLibrary) + "/";
    #if defined(WIN64)
              jvmLibrary.append("bin/server/jvm.dll");
    #elif defined(WIN32)
              jvmLibrary.append("bin/client/jvm.dll");
    #elif defined(__sparc__) && defined(__sun__)
              jvmLibrary.append("lib/sparcv9/server/libjvm.so");
    #elif defined(__x86_64__) && defined(__sun__)
              jvmLibrary.append("lib/amd64/server/libjvm.so");
    #elif defined(__i386__) && defined(__linux__)
              jvmLibrary.append("lib/i386/server/libjvm.so");
    #elif defined(__x86_64__) && defined(__linux__)
              jvmLibrary.append("lib/amd64/server/libjvm.so");
    #else
              jvmLibrary = "./libjvm.so";
    #endif
    std::cout << "jvmlibrary is " << jvmLibrary << std::endl;
    #ifndef RTLD_GLOBAL
    #define RTLD_GLOBAL 0
    #endif
    void * s_jvmLibrary = dlopen(jvmLibrary.c_str(), RTLD_LAZY | RTLD_GLOBAL);
    if( !s_jvmLibrary )
    char * err = dlerror();
    string error = (err == NULL) ? "could not open Java VM shared library" : err;
    std::cerr << error << std::endl;
    exit(1);
         return s_jvmLibrary;
    JavaVM *
    CreateJavaVM()
         JNIEnv *env = NULL;
         JavaVM *jvm = NULL;
         std::list<std::string> vmOptions;
         void *libraryHandle = GetJavaVMLibrary();
         jniCreateJavaVM_t createVMFunction = (jniCreateJavaVM_t)dlsym(libraryHandle, "JNI_CreateJavaVM");
         if( !createVMFunction )
              std::cerr << "could not find Java VM library function " << std::endl;
    exit(1);
    //Set the Java Max Heap Option
    int noOfOptions = 1;
         s_vmOptions = (JavaVMOption *)malloc(noOfOptions * sizeof(JavaVMOption));
         s_vmOptions[0].optionString = strdup(maxHeapSize.c_str());
         s_vmArgs.version = JNI_VERSION_1_6;
         s_vmArgs.options = s_vmOptions;
         s_vmArgs.nOptions = noOfOptions;
         s_vmArgs.ignoreUnrecognized = JNI_TRUE;
         // Create the Java VM
         int ret = createVMFunction(&jvm, (void**)&env, &s_vmArgs);
         if( ret != 0 )
    std::cerr << "Could not create jvm" << endl;
    exit(1);
         return jvm;
    int
    main(int argc, char **argv)
    int createJvm = USE_JAVA_VM;
    long mSize = ALLOC_SIZE;
    long maxSize = MAX_MEMORY;
    if(argc > 1){
    maxSize = (atol(argv[1]) * 1024);
    cout << "maxSize is " << maxSize << endl;
    if(argc > 2){
    maxHeapSize = string("-Xmx").append(argv[2]);
    if(argc > 3){
    createJvm = atoi(argv[3]);
         if (createJvm)
              JavaVM *vm = CreateJavaVM();
              if (vm != NULL)
                   printf("Sucessfully created Java VM\n");
              else
                   printf("Failed to create Java VM\n");
                   return 1;
         long memUsed = 0;
         long count = 0;
         printf("beginning mallocs\n");
         std::list<void *> memory;
         while (memUsed < maxSize)
              void ptr = malloc(mSize1024);
              memory.push_back(ptr);
              if (ptr == NULL)
                   printf("malloc failed, count=%ld, size=%ld k\n", count, memUsed);
                   return 1;
              memset(ptr, 0, mSize*1024);
              memUsed += mSize;
              count++;
              if (!(count % REPORTING_INTERVAL))
              printf("malloc count=%ld, size=%ld m\n", count, memUsed/1024);
         printf("finished mallocs\n");
         return 0;
    }

  • RPC Remote calls fail after loading sibling.

    Hi All,
    Main loads an app compiled in 3.2. Cannot recompile legacy SWF with version of Main.
    Main and Client are on the same domain. Debugging on localhost.
    Sibling has RemoteObject code but never makes RemoteObject calls.
    Main apps remote calls start failing after sibling is loaded.
    TypeError: Error #1034: Type Coercion failed: cannot convert
    mx.messaging.messages::AcknowledgeMessage@c7ab831 to mx.messaging.messages.IMessage.
    <mx:SWFLoader id="swfLoader"
            loadForCompatibility="true"
            trustContent="false"
            width="100%" height="100%"
            source="ClientGuiApp3-2.swf?fredOn=false"
            complete="swfComplete();"
            creationComplete="initNestedAppProps();"/>
    What I have done to try to fix it.
    trustContent = "False" to put it in its own security domain.
    I thought loadForCompatability good enough to make them use their own class definitions?
    Document I found says RPC special case for multiversion Sandbox or Bootstrap.
    http://help.adobe.com/en_US/Flex/4.0/html/WS2db454920e96a9e51e63e3d11c0bf69084-7f0c.html
    loadForCompatibiity means sandboxing or new security domain for the sibling?
    Thanks in advance,
    Kevin

    1. Remove the WinrmIIS Extension from "Programs and Features"
    2. Reboot the server
    3. Execute the cmd "winrm quickconfig". This adds an exception for the remote management in the Windows firewall.
    4. Install "Winrm IIS extension
    5. Try open Exchange Management Console
    Let me know what happens :)
    Thanks for your guide;
     "WinRM IIS Extension" is not installed.and firewall is off.
    When I open up the Exchange Management Console ,after these message : 
    <Initializing ...
    Setting up Remote Powershell session to: ServerName.MyDomain.net ...>
     I'm seeing these errors:
    <The following error occurred when setting up Remote Powershell session to 'ServerName.MyDomain.net':
    Closing remote server shell instance failed with the following error message : The WinRM client cannot complete the operation within the time specified. Check if the machine name is valid and is reachable over the network and firewall exception for Windows Remote Management service is enabled. For more information, see the about Remote Troubleshooting Help topic. >
    also When I open up the Exchange Management Shell,After several hours the below message remain:
    <VERBOSE:Connecting to  ServerName.MyDomain.net >

  • "loading data. please wait." message on flash charts after releasing to 3.1

    We are experiencing "loading data. please wait." message on all flash charts after exporting our app from dev (3.1.2) where all of the charts work fine and importing it into prod (3.1.2) where the message occurs.
    A work-around has been found by resetting the #HOST# variable in charts' regions' source code
    from:
    XMLFile=#HOST#apex_util.flash?
    to:
    XMLFile=<physical URL of the production app>apex_util.flash?
    Obviously this is an ugly work-around and requires a lot of work every time we do a release because it gets overwritten back to #HOST# with ever import (we have quite a few flash charts).
    Any suggestions, or rumors when this "bug" will be fixed?
    Thank You
    Boris

    Hello,
    Take a look at this thread and see if it addresses your problem -
    Flash chart fails through proxy
    BTW it's not really a 'bug' ;)
    John.
    http://jes.blogs.shellprompt.net
    http://www.apex-evangelists.com

  • How to load other obejects in flash file after intro using ActionScript 3.0

    How to load other obejects in flash file after intro using ActionScript 3.0 or any other method all in same fla file. see blow intro screen shot ,this one playing repeatedly without loading other fla pages .only way to load other pages is click on Skip intro .see second screeshot below .i need that site to load after intro .
    see codes already in
    stop();
    skipintro_b.addEventListener(MouseEvent.CLICK, skipintro_b_clicked);
    function skipintro_b_clicked(e:MouseEvent):void{
    gotoAndStop("whoweare");
    There is another script there
    /* Simple Timer
    Displays a countdown timer in the Output panel until 30 seconds elapse.
    This code is a good place to start for creating timers for your own purposes.
    Instructions:
    1. To change the number of seconds in the timer, change the value 30 in the first line below to the number of seconds you want.
    var fl_TimerInstance:Timer = new Timer(1000, 30);
    fl_TimerInstance.addEventListener(TimerEvent.TIMER, fl_TimerHandler);
    fl_TimerInstance.start();
    var fl_SecondsElapsed:Number = 1;
    function fl_TimerHandler(event:TimerEvent):void
              trace("Seconds elapsed: " + fl_SecondsElapsed);
              fl_SecondsElapsed++;
    i have no knowledge about these thing ,any help really appreciated .

    Ned Murphy Thank you very Much .It is working .Great advice

  • Flash 8 SWF loading Flash 6 and 7 SWF with quality issues

    I have made a Flash 8 .exe that "loadmovie"s a
    Captivate(Flash 6) SWF. The animation screenshots come out blurred
    when the SWF is loaded in the Flash 8 .exe. If I create a test
    Flash 7 .exe, this does not happen. Any Ideas?
    PS - I need to use Flash 8 because of filters and VP6
    video.

    It's not completely clear what you're saying.
    Do you have a wrapper SWF that first dynamically loads the
    Flash 6 movie? If so, then is that wrapper in Flash 8 format? If
    that's the case, then if someone has only the Flash 6 Player then
    it may not be displayed anyway.
    If what you're doing is loading the Flash 8 movie into Level
    0 of the Flash 6 movie, then this may be causing some of the mess
    you're experiencing.
    Normally there are two ways to catch a viewer that doesn't
    have the Flash 8 Player: 1) a detection script, which usually
    works, and is part of many of the HTML templates that are built
    into Flash (HTML Settings panel); or 2) Put the Flash 6 movie on a
    separate HTML page from the Flash 8 SWF.

  • Flash fails to load into Firefox.  Why?

    I have tried too many times to load the Flash player into firefox (3.6.6 on Windows NT (SP3), 32 bit).
    Flash does work on IE, but never on Firefox.
    I have tried uninstalling and reinstalling. No joy.
    It does not matter if Firefox is running or not why I try to load Flash.
    It may be a clue that the automatic download does not start.
    Instead I have downloaded install_flash_player_ax.exe and run that program.
    If goes to 100% and then says "DONE"
    I downloaded the Adobe Reader and that works fine.
    It is a bit frustrating that the help pages suggest in several places
    that I upload Flash in order to get help uploading flash.
    Among my attempts to get a clean Adobe environment on the machine,
    I tried to remove the Adobe Download Manager. It failed with the message:
        Error loading C:\Program File\NOS\bin\getPlus_helper.dll
    Is this a problem for loading Flash?
    How can I get the named file? (There is no Program Files\NOS directory.)

    My anti-virus is AVG free 9.0.839. It has a firewall.
    There are four entries in C:\WINDOWS\system32\Macromed\Flash\
        File:FlashInstall.log     25 KB    7/18/2010     9:04:58 PM
        FlashPlayerTrust        7/14/2010     8:33:13 PM
        File:KB923789.inf    6 KB     8/24/2006     8:35:00 AM
        File:genuinst.exe     25 KB     1/21/2006     3:01:22 PM
    (KB923798 is from 2006)
    FlashPlayerTrust contains only:
        File:AcrobatConnect.cfg     7 KB     3/7/2007     10:41:36 AM
    Here is the last log entry in C:\WINDOWS\system32\Macromed\Flash\FlashInstall.log
    =O====== M/10.1.53.64 2010-07-19+01-04-54.921 ========
    0000 [I] 00000010 "C:\downloads\uninstall_flash_player.exe" -force 
    0001 [W] 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 [W] 00001018
    0003 [W] 00001037 Software\Macromedia\FlashPlayer\SafeVersions/ 2
    0004 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0005 [W] 00001019
    0006 [W] 00001020
    0007 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0008 [W] 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0009 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0010 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0011 [W] 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0012 [W] 00001021
    0013 [W] 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0014 [W] 00001018
    0015 [W] 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0016 [W] 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0017 [W] 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0018 [W] 00001019
    0019 [W] 00001020
    0020 [W] 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0021 [W] 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0022 [W] 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0023 [W] 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0024 [W] 00001021
    0025 [W] 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0026 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0027 [W] 00001036 Software\Opera Software/Last CommandLine 2
    0028 [W] 00001036 Software\Opera Software/Plugin Path 2
    0029 [W] 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.1.53.64 2010-07-19+01-04-58.968 ========

  • Array stuff lost after finish loading a eventHandler.

    array stuff lost after finish loading a eventHandler.
    When my EventHandler for the Event.COMPLETE of xml
    URLLoader()
    finish running this:
    public function imageLoad(u:String):void{
    imgLoader = new Loader();
    imgRequest = new URLRequest(u);
    imgLoader.load(imgRequest);
    // imgLoader.content as MovieClip;
    trace(buffer.length);
    buffer.push(imgLoader);
    which load images into array, buffer.
    When I get back to constructor, there's nothing in the buffer
    array.
    WHy?
    thank you

    you're reinitializing buffer.

  • Loading a Flash 8 swf that loads another Flash 8 swf

    I'm trying to get a Flex swfloader component to load a Flash
    8 swf file at runtime, this works fine although the swf file...
    main.swf loads other swf files into levels e.g.
    main.swf contains:
    loadmovienum("menubar.swf",2);
    Everything works as expected unless I put main.swf in a Flex
    swf, where the menubar doesn't load up. Everything is in the same
    local directory and works fine if I run main.swf outside of Flex.
    Please help! I have run out of ideas.
    kimb

    Hey! It seems that when you load a Flash 8 (or AVM1) swf into
    a Flex application (or any AVM2 swf), it is unable to utilize its
    _levels correctly. To circumvent this issue, try creating an empty
    movieclip called level2, and that should work.
    Let me know if this work, because another issue can arise if
    you try to load multiple swfs on that same movieclip.

  • Flex Generated Swf Donot load in Flash On Publishing.

    Hello!
    I am facing one problem,I made a calendar.swf in flex.
    and I am trying to load that calendar.swf file in flash file get-calendar using Loader Class.
    calendar.swf is coming fine when I press cntrl+Enter
    i mean during compiling swf.
    But when I publish that using F12 then that flex swf donot load.
    What is the reason,,I dont understand it.
    Pls help!
    Thanks

    calendar.swf is compiled to run in the local-with-networking sandbox, while get-calendar.swf runs in local-with-filesystem. Loading one into the other causes a security error. Simplest solution is to change get-calendar.fla to local-with-networking:
    Publish Settings (Flash tab). Select Access network only in Local playback security.

  • After installing Firefox6 many sites will not finish loading. I click on "stop loading this page" and then click on "reload this page" and the page loads. Also if I disable javascript the page will load.

    After installing Firefox 6 MANY web site will not finish loading. I disabled all add-ons and still have the problem. If I disable javascript, the pages will load. When the page is trying to load, if I hit "stop loading this page" and then hit "reload this page", the page will load; but sometimes I have to do this 2-3 times for the page to finish loading. No problem with these pages using IE8.

    I see that you ave changed some network.http prefs.<br />
    Doing that can cause all kinds of problems because not all servers like such changes, so you can try to reset those prefs on the about:config page.<br />
    network.http.max-connections 48<br />
    network.http.max-connections-per-server 16<br />
    network.http.max-persistent-connections-per-proxy 16<br />
    network.http.max-persistent-connections-per-server 8<br />
    network.http.pipelining true<br />
    network.http.pipelining.firstrequest true<br />
    network.http.pipelining.maxrequests 8<br />
    network.http.proxy.pipelining true<br />
    network.http.request.max-start-delay 0<br />
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]

  • HOW can I make a .SWF default load after its first load?

    When you have the SAME parent API on every page of an (X)HTML website, can a .SWF tell itself to load from a default position when a website user navigates to different HTML pages?
    Here's my parent API as it stands:
    http://www.playingthepoet.com/
    HOW can you tell the .SWF to load from a default position once the .SWF has loaded a first time? AND from any page of the website, not just the Home page? This is an advanced .SWF networking issue. And I'm not sure if the best solution is a Javascript of if there's a direct AS3 programming solution.
    The blurs and fade-ins are a bunch of timer variables and timer event methods timer event listeners. I want that intro ONLY ONCE. And NOT every time a user changes HTML pages. Please help, and MANY thanks for your time!!
    NT

    Hi ,
    You can set a variable say "count" on stage composition ready -
    sym.setVariable("count" , 0);
    On stage click , you keep checking the value of this variable -
    if(sym.getVariable("count") == 5)
      sym.$("Symbol_2").show();
    //Here "Symbol_2" is the next button that you want to appear on screen(which is initially invisible) when the symbol_1 is clicked say 5 times.
    Now, on click of a button , you keep updating the variable count -
    var countnew = sym.getVariable("count");
    countnew = countnew+1;
    sym.setVariable("count" , countnew);
    Attaching the sample for reference.
    Thanks and Regards,
    Sudeshna Sarkar

Maybe you are looking for

  • Upgrading to os x Lion

    I just upgraded to Lion on my desktop. Can I use the same upgrade on my laptop, or do I have to pay the "fee" twice?

  • GREP PROBLEM? Attribute parts of one fields rawvalue to other fileds

    I am trying to find a way to divide the rawvalue of an input field into its component words so if field A has a vlaue of "Julia Alison Child" i would like to be able to cut that up into Firstname Middlename and Lastname fileds I susepct it can be don

  • Photoshop CS 6 I get a white border across top of 8.5x11 when borderless is checked

    Hi, Photoshop CS 6 I get a 1/16 inch white border across top of 8.5x11 when borderless is checked. How do I fix this. Thanks, Roger

  • Can download, cannot burn to cd

    When I try to burn a cd, I get the message the burner or software is not found. I've only downloaded/burned about 30 songs and my computer is only about 6 months old. Please help!!!!!!!!!!! My CD Diagnostics is as follows: Microsoft Windows XP Home E

  • How to read data from a PS2 port (keyboard)

    I am currently trying to utilize a barcode scanner that is connected via a ps2 port. It works similarly to a keyboard. However, i have a problem taking signals from a ps2 port, as i do not know any function that could do that in LabVIEW. Please advic