SWF file autostart from a USB

Hi!
I'm trying to make a swf file autostartable from a usb drive. I have tryed to make the swf into a exe file and make a autorun.inf and just juse a open=shape.exe comand tho i cant get it to work i have tryed some outer lines of code aswell but this line is the one i get when i googled it. Any one out there with a good idé what i could do to make it work?
I have also tryed to get a .bat file to start and well that doesent work aswell-
Message was edited by: abbagid

http://www.samlogic.net/articles/autorun-usb-flash-drive.htm

Similar Messages

  • .swf file created from Indesign won't open in Flash Player

    I have created an interactive flash presentation using Indesign. For several weeks I have made edits, exported a .swf file and opened the file by double-clicking it to open in Flash Player. From there I was able to export an .exe file with an embedded projector for users that may not have flash player. The file does not open and asks whcih progrma I would like to open with when clicking the file.
    I am running Windows XP, Adobe CS5
    Thanks for your help.

    That sounds more Windows file association issue.Have you tried to Right-Click your SWF and choosed Open With (or something like that), you can choose Flash Player from that list if it´s installed.

  • Remove / unload external swf file(s) from the main flash file and load a new swf file and garbage collection from memory.

    I can't seem to remove / unload the external swf files e.g when the carousel.swf (portfolio) is displayed and I press the about button the about content is overlapping the carousel (portfolio) . How can I remove / unload an external swf file from the main flash file and load a new swf file, while at the same time removing garbage collection from memory?
    This is the error message(s) I am receiving: "TypeError: Error #2007: Parameter child must be non-null.
    at flash.display::DisplayObjectContainer/removeChild()
    at index_fla::MainTimeline/Down3()"
    import nl.demonsters.debugger.MonsterDebugger;
    var d:MonsterDebugger=new MonsterDebugger(this);
    stage.scaleMode=StageScaleMode.NO_SCALE;
    stage.align=StageAlign.TOP_LEFT;
    stage.addEventListener(Event.RESIZE, resizeHandler);
    // loader is the loader for portfolio page swf
    var loader:Loader;
    var loader2:Loader;
    var loader3:Loader;
    var loader1:Loader;
    //  resize content
    function resizeHandler(event:Event):void {
        // resizes portfolio page to center
    loader.x = (stage.stageWidth - loader.width) * .5;
    loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    /*loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;*/
    addEventListener(Event.ENTER_FRAME, onEnterFrame,false, 0, true);
    function onEnterFrame(ev:Event):void {
    var requesterb:URLRequest=new URLRequest("carouselLoader.swf");
    loader = null;
    loader = new Loader();
    loader.name ="carousel1"
    //adds gallery.swf to stage at begining of movie
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requesterb);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    // stop gallery.swf from duplication over and over again on enter frame
    removeEventListener(Event.ENTER_FRAME, onEnterFrame);
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent):void {
    // re adds listener for contact.swf and about.swf
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
    var requester:URLRequest=new URLRequest("carouselLoader.swf");
        loader = null;
    loader = new Loader();
    loader.name ="carousel"
    loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader);
    loader.x = (stage.stageWidth - 739) * .5;
    loader.y = (stage.stageHeight - 500) * .5;
    removeChild( getChildByName("about") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of gallery.swf
    MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    function Down1(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    var requester:URLRequest=new URLRequest("contactLoader.swf");
    loader2 = null;
    loader2 = new Loader();
    loader2.name ="contact"
    loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader2.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader2);
    loader2.x = (stage.stageWidth - 658.65) * .5;
    loader2.y = (stage.stageHeight - 551.45) * .5;
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
    //adds eventlistner so that info.swf can be loaded
    MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    function Down3(event:MouseEvent):void {
    //this re-adds the EventListener for portfolio so that end user can view again if they wish.
    MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
    var requester:URLRequest=new URLRequest("aboutLoader.swf");
    loader3 = null;
    loader3 = new Loader();
    loader3.name ="about"
    loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
    function ioError(event:IOErrorEvent):void {
    trace(event);
    try {
    loader3.load(requester);
    } catch (error:SecurityError) {
    trace(error);
    addChild(loader3);
    loader3.x = (stage.stageWidth - 482) * .5 - 260;
    loader3.y = (stage.stageHeight - 492) * .5 - 140;
    removeChild( getChildByName("carousel") );
    removeChild( getChildByName("carousel1") );
    // remove eventlistner and prevents duplication of info.swf
    MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
    stop();

    Andrei1,
    Thank you for the helpful advice. I made the changes as you suggested but I am receiving a #1009 error message even though my site is working the way I wan it to work. I would still like to fix the errors so that my site runs and error free. This is the error I am receiving:
    "TypeError: Error #1009: Cannot access a property or method of a null object reference."
    I'm sure this is not the best method to unload loaders and I am guessing this is why I am receiving the following error message.
         loader.unload();
         loader2.unload();
         loader3.unload();
    I also tried creating a function to unload the loader but received the same error message and my portfolio swf was not showing at all.
         function killLoad():void{
         try { loader.close(); loader2.close; loader3.close;} catch (e:*) {}
         loader.unload(); loader2.unload(); loader3.unload();
    I have a question regarding suggestion you made to set Mouse Event to "null". What does this do setting the MouseEvent do exactly?  Also, since I've set the MouseEvent to null do I also have to set the loader to null? e.g.
    ---- Here is my updated code ----
    // variable for external loaders
    var loader:Loader;
    var loader1:Loader;
    var loader2:Loader;
    var loader3:Loader;
    // makes borders resize with browser size
    function resizeHandler(event:Event):void {
    // resizes portfolio page to center
         loader.x = (stage.stageWidth - loader.width) * .5;
         loader.y = (stage.stageHeight - loader.height) * .5;
    // resizes about page to center
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
    //adds gallery.swf to stage at begining of moviie
         Down();
    //PORTFOLIO BUTTON
    //adds eventlistner so that gallery.swf can be loaded
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
    function Down(event:MouseEvent = null):void {
    // re adds listener for contact.swf and about.swf
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
    //unloads gallery.swf from enter frame if users presses portfolio button in nav
         var requester:URLRequest=new URLRequest("carouselLoader.swf");
         loader = new Loader();
         loader.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader.load(requester);
         } catch (error:SecurityError) {
         trace(error);
         this.addChild(loader);
         loader.x = (stage.stageWidth - 739) * .5;
         loader.y = (stage.stageHeight - 500) * .5;
    // sure this is not the best way to do this - but it is unload external swfs
         loader.unload();
         loader2.unload();
         loader3.unload();
    // remove eventlistner and prevents duplication of gallery.swf
         MovieClip(root).nav.portfolio.removeEventListener(MouseEvent.MOUSE_DOWN, Down);
    //INFORMATION BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         function Down1(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         var requester:URLRequest=new URLRequest("contactLoader.swf");
         loader2 = null;
         loader2 = new Loader();
         loader2.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);    
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader2.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader2);
         loader2.x = (stage.stageWidth - 658.65) * .5;
         loader2.y = (stage.stageHeight - 551.45) * .5;
    loader.unload();
    loader2.unload();
    loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.info.removeEventListener(MouseEvent.MOUSE_DOWN, Down1);
    //ABOUT BUTTON
         //adds eventlistner so that info.swf can be loaded
         MovieClip(root).nav.about.addEventListener(MouseEvent.MOUSE_DOWN, Down3, false, 0, true);
         function Down3(event:MouseEvent = null):void {
         //this re-adds the EventListener for portfolio so that end user can view again if they wish.
         MovieClip(root).nav.portfolio.addEventListener(MouseEvent.MOUSE_DOWN, Down, false, 0, true);
         MovieClip(root).nav.info.addEventListener(MouseEvent.MOUSE_DOWN, Down1, false, 0, true);
         var requester:URLRequest=new URLRequest("aboutLoader.swf");
         loader3 = null;
         loader3 = new Loader();
         loader3.contentLoaderInfo.addEventListener(IOErrorEvent.IO_ERROR, ioError);
         function ioError(event:IOErrorEvent):void {
         trace(event);
         try {
         loader3.load(requester);
    }      catch (error:SecurityError) {
         trace(error);
         addChild(loader3);
         loader3.x = (stage.stageWidth - 482) * .5 - 260;
         loader3.y = (stage.stageHeight - 492) * .5 - 140;
         loader.unload();
         loader2.unload();
         loader3.unload();
         // remove eventlistner and prevents duplication of info.swf
         MovieClip(root).nav.about.removeEventListener(MouseEvent.MOUSE_DOWN, Down3);
         stop();

  • File size of .swf files exported from Indesign CS5

    I have made a basic file (728 x 90 px) in Indesign, which is the size of banner ads we produce. I have not put on any effect or animation yet. When I export it as a swf file, the file size is 139kb. This is way too large for any banner advertising on websites where the highest is normally 100px and the smallest is 30kb.
    I have tried exporting at a lower resolution, but it has no effect on the file size, rendering this useless as a flash export option for me.
    Is there something I'm missing or is Indesign just not the right tool for flash banner ads.
    Thanks

    Mr Met
    {swf file that's 13MB. What are your images, 200MB each?}
    As I said, I resampled the images to be 500px wide so each PShop image is about 1.4mb (single layer). There are 12 images used.
    Here it is if you care to see i t- 11mb so it will take time to load
    http://wgdesigngroup.com/10/elaine/elaine.html
    Jongware
    {The Right Tool for the Right Job ...}
    No doubt you are a 100% right here.
    But I think it is a bit disingenious to blame the InDesign user for the feature. It would be like Abobe putting Drop Shadows and transparences into ID and then saying you should use PhotoShop to for that feature!
    Brian

  • Skin control in swf file created from indesign not showing online

    Hi,
    I used indesign cs5.5 interactive to create a swf file with embeded video and skin control.  When I view the video on my pc the video and skin control works but when I uploaded both the swf file and the skin control file  online to my client's server the skin control doesn't show. I suspect it has something to do with the path, is there somewhere I can specify the path to where the skin control is loaded online?
    Thanks.
    Natennove

    gp2011 wrote:
    The file does not open and asks whcih programI would like to open with when clicking the file.
    Which file - the .swf or the .exe file?
    If the .swf, you need to create a file association to the projector.

  • Help swf file different from internal movie testing

    ok i made a simple website and when i test it while the file
    is open it works fine but when i drag the swf file into a web
    browser random movie clips are missing, my buttons are gone and the
    code dosent work right, Im totally clueless as to how to fix this
    since it works fine and with no errors in my flash file so if
    anyone has any idea what i should do that would really help cuz im
    outta ideas

    "Laur56" <[email protected]> wrote in
    message news:e4g5hf$btf$[email protected]..
    > ok i made a simple website and when i test it while the
    file is open it works
    > fine but when i drag the swf file into a web browser
    random movie clips are
    > missing, my buttons are gone and the code dosent work
    right, Im totally
    > clueless as to how to fix this since it works fine and
    with no errors in my
    > flash file so if anyone has any idea what i should do
    that would really help
    > cuz im outta ideas
    Check for publish version not matching the player. If
    publishing for player 8, make sure your browser has that version of
    the
    player.
    tralfaz

  • SWF file different from internal movie testing

    ok i made a basic website in flash when i test the movie
    while my file is open everything works fine, no errors pop up or
    anything, but when i go to drag the swf file into a web browser,
    random movie clips as well as all of my buttons are missing and the
    code dosent work like it should, I have absolutely no idea why my
    file works in one place and not another so if anyone can give me
    any feed back at all id appreciate it

    I would recommend trying different browsers if you haven't
    already. I am working through a similar issue with a dynamic Flash
    menu and it is veryyyyy different in IE then in Firefox. Also, if
    you have a test site we could look at that might get you more help
    too.

  • URGENT -- loading SWF file locally from second time not  remotely

    Hi,
           I have Air application which has theming and localization those are loading remotly every time. Now i want to changes such a way that,
    theme.swf should load remotely first launch and second time onwords it should use locale swf.
    To acheive this
      I  download the swf to locale native path and using that path i can load the theme.
    Now,
              Using File,URLLoder and FILE streem, am reading the remote swf file data and locally creating new file and writing in that.
    So now
      When ever am trying to load locale one some errors are throwing like the following things repeatedly
    VerifyError: Error #1014: Class mx.core::FlexSprite could not be found.
    at flash.display::MovieClip/nextFrame()
    at mx.core::FlexModuleFactory/deferredNextFrame()[E:\dev\4.x\frameworks\projects\framework\s rc\mx\core\FlexModuleFactory.as:631]
    at mx.core::FlexModuleFactory/update()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\ FlexModuleFactory.as:401]
    at mx.core::FlexModuleFactory/moduleCompleteHandler()[E:\dev\4.x\frameworks\projects\framewo rk\src\mx\core\FlexModuleFactory.as:718]
    VerifyError: Error #1014: Class mx.core::SpriteAsset could not be found.
    at flash.display::MovieClip/nextFrame()
    at mx.core::FlexModuleFactory/deferredNextFrame()[E:\dev\4.x\frameworks\projects\framework\s rc\mx\core\FlexModuleFactory.as:631]
    at mx.core::FlexModuleFactory/update()[E:\dev\4.x\frameworks\projects\framework\src\mx\core\ FlexModuleFactory.as:401]
    at mx.core::FlexModuleFactory/moduleCompleteHandler()[E:\dev\4.x\frameworks\projects\framewo rk\src\mx\core\FlexModuleFactory.as:718]
    doubts:
    IS THERE ANY DIFFERENCE BETWEEN actual file(remote) and created file(written)
    Please help me in this
    Thanks
    J Kishore

    Verify that the file is written correctly.
    If it is not written to the application-directory it will be sandboxed and
    fail.

  • HP dv6-6188ca windows 7 pro 64b amd chipset 8G locks up copying files to/from external usb drive

    When ever I try to copy a large (>2G) file to or from a external usb drive the computer starts the copy but gets stuck. It has to be powered off and the battery removed to get it to work again.

    Please repost your inquiry in the Microsoft Windows 7 Performance Forum. 
     Thank you!
    Carey Frisch
    Microsoft MVP
    Windows Expert - Consumer

  • How do I delete files permanently from a usb flash key? On my mac (Yosemite 10.10) it's telling me the files are deleted, however on plugging key into television they're still there

    I've a problem I've never come across before and it's how to permanently delete files on a usb flash key? I've just migrated from using Windows for 15 years onto Apple iMac and had been deleting files easily and permanently from the key on Windows without any hassle and thought I'd done the same on my iMac but seemingly they're still there as the tele is showing them when key is plugged in, BUT they can not be seen on iMac. I wondered why the key wouldn't take anymore files after, what I thought was, deletion and now I know why-imac hasn't deleted them!
    I've actually gone into Disk Utility and formatted the key in it's usual FAT32 format to finally delete the files.  Anyone any ideas as to why this happens and how to solve this please?
    Many thanks
    puretoon

    In addition to what Drew wrote, remember the Mac has a data fork and a resource fork.
    Here is an old thread but a nice recap by Dr. Smoke
    ._Files
    Note that the ._file files you note are the resource forks of Mac files you copied to the drive from your Mac, and these are only visible when you use the Flash drive on a PC. These are normal and indicate the Flash drive is already formatted for Windows.
    When you copy or save a file from a Mac OS X system to a Windows shared volume or a Windows-formatted disk, the Mac creates two files: the data fork (xxx) and the resource fork (._xxx). This is called Apple Double Format and is normal. The resource fork contains additional data about the file that is exclusive to the Mac that cannot be saved otherwise on Windows-formatted disks. This is new with Mac OS X, as documented in Mac OS X: Apple Double Format Creates File Name With the Prefix '._'.
    The resource fork files (._xxx) are necessary if you want to copy the file back to the Mac and retain the metadata. The resource forks of files are invisible when they are used on the Mac: the Mac OS Extended file system (aka HFS Plus or HFS+) uses forked files, with a file having both data and resource forks.
    You can delete the resource forks on the Windows disk if and only if you don't care about losing the resource fork information should you copy them back to the Mac, such as comments, image preview icon, etc. Some Mac applications use the resource fork data, so deleting the resource fork can be problematic if you copy the file back to the Mac. Likewise moving the file while not also moving its associated resource fork when using the data on a PC can result in problems when using some files again on the Mac.
    You can't prevent the resource forks from being created if you copy or save files from the Mac to the Windows share or Windows-formatted disk via Finder.

  • Swf file exported from Captivate 2 should pause at each slide, but doesn't always

    I have made a tutorial in Captivate 2 and exported it to an
    swf format. In Captivate, I had put a button at the end of each
    slide to pause it. I have gone back and checked to see if each
    slide was correctly paused and it was. When I play it in Flash
    Player 8, preview it in Captivate 2, or load it with Flash player 8
    in an internet browser, most of the slides function as they should,
    but randomly some slides will not pause and will just continue on
    to the next one. It is different slides each time it is loaded that
    do or don't pause. Does anyone know what the problem is? Is it just
    a bug in Captivate?

    There is a CRAPtivate forum here:
    http://www.adobe.com/cfusion/webforums/forum/categories.cfm?forumid=67&catid=464&entercat= y

  • How can I control a button from one swf file to another swf file?

    Hi,
    I have a main.swf file. From that file I am accessing the external.swf file which is an external file.
    Now, how can I write code on my main.swf file for the button which is on my external.swf file?
    Activities.MainPanel.close_btn.addEventListener(MouseEvent.CLICK, btnClickClose);
    Activities.MainPanel.close_btn (This buttons is actually on external.swf file, but I want to write code on main.swf file to execute it on external.swf) how can I control one swf button on other swf file?
    Thanks.

    Here's some example code that you should be able to adapt to your needs.
    // create a new loader object instance...
    var loader:Loader = new Loader();
    // make the download request...
    var request:URLRequest = new URLRequest("external.swf");
    // add a complete event listener to the loader
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, completeHandler);
    // start the actual loading process...
    loader.load(request);
    // create a new empty movieClip instance, you will put the loaded movie into this movieClip once its loaded
    var externalMovie:MovieClip;
    // this function is called when the download has finished and the file is ready to use...
    function completeHandler(event:Event):void {
       // set the contents of the loaded movie to the new empty movieClip...
               externalMovie = MovieClip(event.target.content);
       // add this new movie to the display list...
       addChild(externalMovie);
    Now you can refer to the loaded movie with the instance name "externalMovie". So if, for instance, you want to address a button in the loaded movie, you could write something like this on the main timeline:
    externalMovie.addEventListener(MouseEvent.CLICK, btnClickClose);
    function btnClickClose(event:MouseEvent):void {

  • Firefox will not load my swf file. Runs perfectly in all other browsers. Help!

    I've developed a website (www.fit-mamas.com.au) whereby you click on the black & white image and get a pop-up window running a video. The video is an .flv file running via a .swf file loaded from an html file. The .swf file was produced using Flash CS3. The video loads perfectly in all browsers except for Firefox which just displays a blank screen with video controls. I've been researching online for hours, as this problem is a common one, but nobody else's solutions are working for me. Any help would be appreciated. My code is as follows:
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    id="fit-mamas" width="640" height="400">
    <param name="movie" value="fit-mamas.swf">
    <param name="bgcolor" value="#FFFFFF">
    <param name="quality" value="high">
    <param name="allowscriptaccess" value="samedomain">
    <embed type="application/x-shockwave-flash"
    pluginspage="http://www.macromedia.com/go/getflashplayer"
    width="640" height="400"
    src="fit-mamas.swf" name="fit-mamas"
    bgcolor="#FFFFFF" quality="high"
    swLiveConnect="true" allowScriptAccess="samedomain"
    ></embed>
    </object>

    The video works for me on Linux. The server seems to be slow and playing stops all the time.
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • Swf file has stopped playing in 'live' browser only

    Hello everyone,
    Hope you can help with this, whilst working on my site one of the swf files stopped playing when viewed in the browser (live). The file plays ok from Dreamweaver from both local view and remote view. Went onto web server cpanel and played the swf file ok from there as well. Have checked the code and all seems fine, I wasn't even working with that file when it went wrong, all I done was replaced a png picture with a swf file on a different part of the page, this new swf plays fine along with all other swf files on my site. I have uploaded and syncronised both the page and swf files again but still no joy.
    I really am stumped for an answer, any help would be greatly appreciated.
    Thanks in advance,
    Stuart

    Here's the link, but after 3 hours of not playing it started to play by itself after I added a favicon (which still isn't working) to the index page.
    That is really strange and a bit worrying as it seems to have a mind of it's own. It also happened once before on another page when I was adding content to the site. I was able to kickstart that one by uploading the page again from local.
    The swf file which wasn't playing is midway down page showing drawings.
    http://www.joinerycadsolutions.com/St_Johns.html
    At least it's working now although I feel scared to touch the site in case I loose it/another again.
    Thanks for the reply.
    Stuart

  • Searchable Text in SWF file

    I am creating an interactive document in InDesign and exporting it as a SWF file.  I would like the text in the SWF file to be searchable text.  Do I need to set up the document a certain way to achieve this?  Can I create a search button within InDesign that will allow this to happen?  Is there an add-on you can use to have the search option available within the flash player?  I would greatly appreciate any knowledge and help regarding this issue.  Thanks!

    No, there´s no such feature in InDesign. Actually the text InDesign exports, if use SWF as a format, is quite a mess. Words are splitted to separate characters and it´s not even closely in searchable form.
    3rd party finalizing tool for SWF files exported from InDesign - eDocker - can however create a simple keyword search for you document. Search is still in beta feature but it works if you just need to have a textfield where end-user can write a word or phrase to search for. After clicking search button, he/she will receive a list of search results, which are also links pointing to those pages where actual results are.
    Check for instance this link:
    http://www.nypa.gov/AR09/annualReport09.html
    Try word empire and you will get few results to pages where that word can be found.....
    You will find eDocker here>>

Maybe you are looking for

  • Where do I get an SMC Firmware Update for my 21.5 inch Late 2009 iMac?

    Hello Apple Support Communities, I have a 21.5 inch, Late 2009 Intel iMac. Currently it is running OSX Lion. It is also running Bootcamp with Windows 7 Professional Installed. Recently the Hard drive crashed on me and I ordered a new generic Hitachi

  • Alpha channel showing in preview

    If I import a .psd file that has an alpha channel, it shows in the preview. Does anyone know how I can eliminate the alpha channel in the preview. iView has a specific option for this but I can't seem to find anything similar in Aperture.

  • Flat file upload has zero as dash -

    Hi, I have a .csv that I upload in a datasource. It has a "-" character for zero values. Is there a conversion routine to convert  a - to a 0? Or another way to handle this easily? thanks, Max

  • Is anyone successfully using Mobile Field service - laptop version  in 12.2.X ?

    We need this type of functionality but we  are on 12.0.6.  We are considering upgrading but we were going to upgrade later this year.  However, we need this type of functionality as soon as possible.  Is anyone using Mobile  Field Service in 12.2.X w

  • Detecting the SAVE of the data to the planning buffer

    Hi, When the user has saved the planning buffer data after executing the planning function that has the Exit FM, how can I detect that the data from the planning buffer has been saved from my Exit FM? Is there a way to detect that he user has clicked