Need Action When Flash File Finishes

I have a flash file embeded in a jsp page....
<OBJECT
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
WIDTH="320" HEIGHT="240" id="Yourfilename" ALIGN="">
<PARAM NAME=movie VALUE="<c:out
value="${myForm.resource}" />">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFCC >
<EMBED src="<c:out value="${myForm.resource}" />"
quality=high bgcolor=#FFFFCC
WIDTH="640" HEIGHT="480" NAME="<c:out
value="${myForm.resource}" />"
ALIGN="" TYPE="application/x-shockwave-flash"
PLUGINSPAGE="
http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
When the flash file finishes. I want my page to redirect
auto-magically to another web page. How do I do that?
Is it possible to put a re-direction into the object
header?

insert a keyframe on the last frame of the action layer, then
add this code into it:
getURL("
http://www.yoursite.com","_self");

Similar Messages

  • Download Taskbar now flashes when a file finishes instead of when it starts the download

    I just recently upgraded to Firefox 8.0. In the previous version, when starting a download, the taskbar would flash as the download began. Since updating I've noticed that the taskbar now flashes orange when the file finishes downloading. While I understand that this may be useful for many, if not most, folks, I'd really prefer to change the timing so that the "alert" happens as a download begins. Is this something I can adjust, or is this behavior "hardwired" into FF 8?

    You mention changing some settings. What were they?
    You could try turning off integrated virus scanning. This assumes that you have real-time virus scanning of files added to the file system via McAfee or another product.
    (1) In a new tab, type or paste '''about:config''' in the address bar and press Enter. Click the button promising to be careful.
    (2) In the filter box, type or paste '''scan''' and pause while the list is filtered
    (3) Double-click '''browser.download.manager.scanWhenDone''' to toggle its value.
    Besides the obvious -- that this setting points your AV software at the file -- it also marks the file as sourced from the web, which causes Windows to apply certain security restrictions to the file. If you find that this change resolves the issue, the file disappearance might have been due to your IE security settings for the Internet zone.

  • Need help: enter flash file in Dreamweaver site with dark background

    Hi,
    I've entered a SWF in a dreamweaver site with a dark blue
    background. When you view the site in a browser there is a white
    square (the size of the flash file) that flashes up for a second
    before the file starts loading. This is rather ugly and I was
    wondering if anyone knew how to avoid this white square from
    flashing up.
    I already tried making the table background dark blue and
    adding a dark blue square as a background image, but that has not
    made any difference.
    If you'd like to see what it does, this is a link to one of
    the pages: www.billmather.co.uk/portraits.htm
    Thank you in advance for any help or advice you can give me!

    Hi Horus,
    Thank you for getting back to me. I found it, and tried it.
    But still does not seem to make a difference. This is what the code
    in dreamweaver now looks like:
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0','wid th','850','height','660','src','flashFilesBill/landscapes','quality','high','pluginspage', 'http://www.macromedia.com/go/getflashplayer','movie','flashFilesBill/landscapes'
    ); //end AC code
    </script>
    <noscript>
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0"
    width="850" height="660">
    <param name="bgcolor" value="#000033" />
    <param name="movie"
    value="flashFilesBill/landscapes.swf">
    <param name="quality" value="high">
    <embed src="flashFilesBill/landscapes.swf" quality="high"
    pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash" width="850"
    height="660"></embed>
    </object>
    Did I enter it correctly? (I also tried it as <param
    name="bgcolor" value="#000033"> but that did not work either) Or
    do we still need to find another solution?
    Thanks ever so much for all your suggestions and ideas. I
    truly appreciate it.

  • Need help placing Flash file in Captivate...

    I have a few short animations I did in Flash that I want to put in Adobe Captivate. They place fine and play fine. But I wanted to know if it is possible to have the last frame of the animation show for the rest of the captivate slide. I'm using Captivate 6 and Flash Pro CS6. Thanks!

    That depends mostly on what you did in the Flash file.  You should ideally NOT fade out the animation at the end and it should terminate with a stop(); action inside the Flash file on its last frame.  Have all of the animation on the main timeline in Flash so that it's not buried down inside a symbol, which would just continue to loop.  Then in Captivate, don't use fade out there either.

  • Listeners for when audio file finish

    I'm using the AVTransmit2 sample java code to send audio to a client. Is there a way to tell when that audio file is finished? I want to set up AVTransmit2 so it randomly plays another audio file once the first audio file is finished. I looked into listeners but I couldn't really figure out how to set them up to work with what I have. I think I need a listener to tell me when the audio file is over, but I can't figure out where it should go and what to make the listener listen to. I wrote some pseudocode to describe what I think I need.
    **Pseudocode
    if ( player.listener = event.stop){
    x = rndnumgen();
    player(x);
    The main() method in AVTransmit2 has a line:
    AVTransmit2 at = new AVTransmit2(new MediaLocator("file:/C:/test.wav"),
                             ip, port, fmt);
    The problem is that I don't think AVTransmit2 has a player like the client does so I don't really know where to put the listener, if anybody has any suggestions I would be much obliged.
    Many thanks,
    Wade

    You need to implement a ControllerListener, register it on your Processor, and listen for an "EndOfMedia" event.
    It's important to note that once a Processor or Player have begun to process, you cannot change the DataSource they're using to play. You can't just tell the Processor "Ok, play this file now" without stopping it, and when you stop it, it'll kill the RTP session.
    [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/Concat.html]
    In order to do what you're wanting to do, you essentially need to use the Concat example to create a DataSource that will act like a jukebox... when one song ends, the DataSource will switch over to start outputting the new song. This way, the Processor itself doesn't have to change DataSources, so you can maintain the RTP session continuously.
    It's also important to note that a specific Processor instance is probably only capable of processing the kind of data it's processing. If you're processing a MOV file, you probably couldn't use the same Processor instance to process an AVI file after that. So, it's important that all of the data that comes out of your jukebox DataSource is the same format, which you can do by embedding Processor's inside the DataSource. This is actually how the example has it implement, so I'm really just explaining why the example does it that way.

  • Automatically run an action when a file opens

    select all
    pathfinder | trim
    save
    I created an action and assigned it to F2.
    Will someone share how I can have that action run whenever a files opens, or write a javascript for me.
    This is for Illustrator CS4
    Thanks
    Cedric

    Sorry about that, here is the current code:
    //WHEN SAVING JPG
    var jpgopts = new JPEGSaveOptions();
    jpgopts.embedProfile = true;
    jpgopts.formatOptions = FormatOptions.STANDARDBASELINE;
    jpgopts.matte = MatteType.NONE;
    jpgopts.quality = 10;
    //WHEN SAVING PSD
    psdOpts = new PhotoshopSaveOptions();
    psdOpts.embedColorProfile = true;
    psdOpts.alphaChannels = true;
    psdOpts.layers = true;
    if (app.documents.length > 0) {
    var myDocument = app.activeDocument;
    var theName= myDocument.name.match(/(.*)\.[^\.]+$/)[1];
    var thePath = myDocument.path;
    var theLayer = myDocument.layerSets["Sizes"].artLayers.getByName ("11x11");
    // check if layer is smart object;
    if (theLayer.kind != "LayerKind.SMARTOBJECT") {alert ("selected layer is not a smart object")}
    else {
    // select files;
    if ($.os.search(/windows/i) != -1)
        //var theFiles = File.openDialog ("please select files", "*.png;*.jpg;*.psd;*.tif", true)   
        var folder = new Folder("F:/Input");
        var theFiles = folder.getFiles(/\.(png|jpg|tif|eps|psd)$/i)
    else {var theFiles = File.openDialog ("please select files", getFiles, true)};
    if (theFiles) {
    // work through the array;
      for (var m = 0; m < theFiles.length; m++) {
    // replace smart object;
    theLayer = replaceContents (theFiles[m], theLayer);
    var theNewName = theFiles[m].name.match(/(.*)\.[^\.]+$/)[1];
    myDocument.saveAs((new File("F:/Output/" + theNewName + ".jpg")),jpgopts,true);

  • I can't download firefox 4. I only get the option of "save file" or "cancel". When saving file nothing happens. Still doesn't download.

    I click on 'download', then the box appears asking whether I want to save file or cancel. Usually, when downloading, the option of "run file" is given, but not in this case.

    Click on Save File. Then click on the Tools menu at the top of the page and click on Downloads. When the file finishes downloading, double click it to being the installation.

  • Need Help To Extract Logo from Flash File .swf

    I have an attached Flash file that is in
    .swf format. There is a N64 logo within this file that I'm
    trying to extract as a
    .png with a transparent background. I've been able to open
    it in a program called
    Flash Decompiler Trillix and in the sub-menus it has the
    logo listed as a frame.
    This is about as far as I have gotten and I'm stuck. Perhaps
    someone else knows how to do this a little easier. I just need to
    find a way to extra the logo that already has a transparent
    background and save it in
    .png format.
    Any help here would be hot." ;)
    Logo Flash
    File .swf

    Hello,
    I ran into a similar problem a few months ago. I have the
    Sothink Flash Decompiler and what I did was turn the SWF back into
    a FLA. I then opened it in Flash and then exported what I wanted as
    a PNG image.
    Decompilers can extract the actual image whether it be jpeg,
    gif, png, etc. But when it's listed as a frame(as you mentioned
    above) then the method above is probably the best way to get it.
    Good luck

  • When I power up my Mac-Pro I only get  a flashing file folder with a ? inside the folder. I suspect my hard drive is maxed to capacity can anyone help me as to what I should do?

    When I power up my Mac-Pro I only get  a flashing file folder with a ? inside the folder. I suspect my hard drive is maxed to capacity can anyone help me as to what I should do?

    Whatever the problem is you no longer have a bootable system. You need to try reinstalling OS X.
    Reinstall Snow Leopard without erasing the drive
    1. Repair the Hard Drive and Permissions
    Boot from your Snow Leopard Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Utilities menu. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Reinstall Snow Leopard
    If the drive is OK then quit DU and return to the installer.  Proceed with reinstalling OS X.  Note that the Snow Leopard installer will not erase your drive or disturb your files.  After installing a fresh copy of OS X the installer will move your Home folder, third-party applications, support items, and network preferences into the newly installed system.
    Download and install Mac OS X 10.6.8 Update Combo v1.1.
    Reinstalling Lion/Mountain Lion Without Erasing the Drive
    Boot to the Recovery HD: Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the main menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • When I am finished editing an image in Lightroom, what files or versions should I have in my database of images?

    When I am finished editing an image in Lightroom, what files should I have in my Library?  I start with a RAW file or a tiff scan from film. I label that "A" as the archived file. I make a virtual copy to work on in the Develop module. When I am done, I save a file as a Print file with dimensions of the print.  Since Lightroom is non-destructive, do I need to save any other versions?  For instance, in Photoshop since the crop is destructive,
    I edit an uncropped version and do the crop when I am working on the Print version.  What should I have for the most flexibility over time in Lightroom? 
    I use Lightroom CC on a IMAC desktop.  My photos are on a separate hard drive and are also backed up offline.  Im running OSX10.9.4.

    You don't need to make a virtual copy before you edit the photo (this is optional, but most people don't bother as its extra work with little or no benefit). EXCEPTION: If you are doing multiple crops of the image, you would need virtual copies in that case, created after all other editing is completed.
    You can't "save" from Lightroom, you can "export". (It's a terminology thing) You would need to export a photo at the desired dimensions for printing, but there's no need to retain this exported photo, you can consider it temporary and delete it once the print has been made, knowing that you can always re-create it exactly from Lightroom if you need it.
    So to answer the question in your title, all you need to retain on your hard disk is your original image (and in the EXCEPTION case where you have multiple crops of the image, you would retain the multiple virtual copies in Lightroom).

  • Flash file stuck in a "low quality" mode when published to intranet

    Hi All,
    New to captivate..the issue I am having is that after
    publishing to a flash file, I'd like to have others in my firm
    review the course prior to it going live in our LMS. However, for
    some reason the quality of the movie is very low, although I have
    the html script (a little new to that as well) set to have the
    quality=best. The worst areas are the caption boxes, the text looks
    awful. The rest I can live with, however it makes our work look
    horrible to our business partners.
    Things I've done:
    1) Loaded a Flash-sourced movie to the intranet to see if it
    has the same quality issue. It doesn't.
    2) Looked at the captivate published movie in the html file
    captivate generated- it looks fine there.
    Anyone else run across this issue? It seems to be something
    with the way captivate publishes the file. Not sure though, I'm not
    a programmer by any stretch.
    Thanks,
    Jason

    Welcome to our community, Jason
    From what you are describing, I am concluding that you are
    perhaps simply sending the .SWF along via E-Mail for review?
    If so, you need to know that if you do this, it will scale to
    fit whatever the browser size is. And when that happens, the
    quality will suffer. Exactly how much suffering occurs depends on
    how much things are scaling.
    The best approach is to upload the files to a web server or
    to a network server. Then provide a link to the HTML page Captivate
    created.
    Cheers... Rick

  • Flash files won't display when using DW CS3

    Anyone else have this problem? The source shows there's a
    flash file on my html page but it doesn't appear at all. When I
    made a new page using Dreamweaver MX, I added a flash file,
    uploaded it, and all was fine (except there was that annoying 'you
    must click to activate' message in IE). When I open that same html
    page in Dreamweaver CS3, it says that DW will fix the 'object tag'
    (to get rid of that message). So it adds the code, then when I look
    at the page on the Web, there's no Flash file there at all. Is
    there something else I need to do when inserting a .swf file in
    CS3? Thanks.

    Sure it does. You forgot to upload the Scripts folder that DW
    alerted you
    to do.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "skimmin" <[email protected]> wrote in
    message
    news:f3nn2s$oio$[email protected]..
    > Placement of the files isn't a problem, as the different
    pages I've tested
    > are all in the same directory, and I'm linking to the
    same Flash file. It
    > makes no sense, really. .

  • I am a Flash developer. When I change a Flash file (SWF) and try to test it, Firefox displays the previous version even though I have cleared the cache. Clearing the cache obviously doesn't clear everything. Why?

    I developed a Flash file (SWF) with a light blue start button, placed it on a web server then went to the URL using Firefox (3.6.8). Later I updated the SWF (changed the button to dark blue), replaced the SWF on the web server, opened Firefox and used Tools/Clear Recent History... to clear the cache. Then when I went to the URL to test the replaced SWF it clearly opened the previous version (light blue button). How can that happen if the previous version no longer exists on the web server? Firefox can only be opening the file from its cache, so why is the file still there if I just cleared the cache?

    Your not alone!
    I had the identical issue with iPhone config Utility on windows 7 64bit.
    A virtual macOS on the same machine didn't have a problem, windows iTunes didnt have a problem. Just a glitch with ICU on windows
    I tried everything you did and the only thing that fixed it was to change the appID or app name (I forget which I did).
    I don't know where that old app data is stored on the machine, but I deleted all apps, uninstalled/reinstalled ICU and it still would populate and install the old ipa.
    I also still periodically get weird errors/glitches deploying to iOS on windows.
    It's like some days I need to deploy with ICU, sometimes iTunes, sometimes I need to run the VM mac... SOO frustrating.
    It always works one way or another, so the app itself is always fine.
    I guess I really need to look into that new direct deployment option...

  • Modification needed in flash file

    i am a newbie flash designer. a client has asked me to make modifications in a flash file used on his website. i am
    currently working on the same and would appreciate your help. the client has given me 'about.swf' file which i decompiled
    using sothink decompiler 4.5 build 90120 to '~about original.fla'. the xml folder resides in the same folder as ~about
    original.fla. it contains about_us.xml.you can download these files at
    http://rapidshare.com/files/251775121/online_questions.zip
    the change the client wants is as follows - if you view 'about.swf' - when you click on 'key people', the details of 4 people
    are given - vivek lakhwara, arun goswami, haresh nayak and ss balaji. he wants 2 more peoples names and details to be added.
    this means adding 2 more names in the top menu (which displays the persons details on mouseover) which currently contains 4
    names and on mouseover their picture and details should appear similar to existing 4 persons
    i have given 'required changes.jpg' to further explain my query.
    please tell me if i have explained my problem properly or further clarifications are needed.

    It's highly unlikely anyone here is going to do the work for you, but here's something to start from.  You need to edit Sprite 145.  It does not involve any xml.  You will have to do some investigation of how the current people are done to figure out how to add in the two additional people and the buttons for them, but it appears to all be contained as static content in Sprite 145.

  • I am facing issue when opening flash files in Flash CC. (Error : - .fla was created with a later version of Adobe Flash Professional CC and might contain new features not supported in this version of Flash professional.)

    I am facing issue when opening flash files in Flash CC. (Error : - .fla was created with a later version of Adobe Flash Professional CC and might contain new features not supported in this version of Flash professional.)

    fyfesa1970 wrote:
    Ask a simple question and get a simple answer...see below...hilarious:
    All representatives are actively assisting other customers. Your estimated wait time is 0 minute(s) and 1 second(s) or longer. Thank you for your patience.
    We all can learn from this. Whenever you get stuck in a customer-service situation that goes nowhere, as soon as you become aware of the futility, get the name and employee ID of the person, then say, "I don't mean to be rude, I think we're both wasting our time. Perhaps you weren't trained for this issue, or perhaps your system isn't displaying the correct information. It doesn't matter, because I'm not getting proper customer support this way. Please ESCALATE this to your highest-level manager IMMEDIATELY. If that person isn't availabe, ESCALATE me to that person's highest-level manager. If you haven't been given the proper training, you can use this to inform your manager that you need the training. Thanks for trying to help. I appreciate it. I have copied and saved this chat session. NOW PLEASE ESCALATE THIS CASE AS I HAVE REQUESTED ABOVE. I'm waiting now... "
    The point is that you're a customer, and the company needs customers, so the individual who's failing to deliver good service needs to be identified so they can be properly trained, and so that problems in the system can also be identified, but more important is that you get the service you're entitled to.
    If you search the forum for similar questions, you'll see the kind of information that the volunteer users like yourself on the forum need to know about your system and files involved, so they can help you better.
    Good luck.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

Maybe you are looking for

  • Sync imac iphone and ipad

    Is it really possible to get an iMac, and iPhone to sync?  I purchased my 27" iMac in February and have spent likely 100-150 hours trying to get these to sync.  Apple technical support is nearly useless... talked to them again as calendars weren't sy

  • Problem With LinkedLists

    Hey Guys Iv been working on this program for a long time now and its basically a card game. I have a Cardist Class, a Deck Class, and a Card Class. I have made the Deck to basically be a array of 40 cards. but i need to make lists to represent hands

  • DataExport command in Calcscript not working

    Hi All Am trying to run a DATAEXPORT via a calc script to a file. The file size is sitting at 1kb and the script has been running for 13 minutes. A normal export typically takes under 5 minutes for level 0 data. I am trying to ensure all dynamic calc

  • Inspector Gone Missing

    No idea why this has happened all of a sudden, but I can't get the Inspector to appear anymore. I've repeatedly trashed my plist files, but still no luck. Anyone know what's going on? Thanks.

  • Satellite X200 - Drivers for Windows 7 32bit

    Please, I'm looking for drivers for the Satellite X200 Windows7 32bit. Can you help me?