On Mac created swf file looses actions once opened on PC

The following issue is occuring:
We create an ebook with Indesign CS5. Then create an FLA file from it or export from pdf to swf straight via InDesign. We create swf in HTML and an Exe file. The following happens:
The Exe file is totally corrupted. Once opened on the PC either in Explorer or FireFox The file just goes wild no actions work at all. The HTML with the swf file works partly. The sound buttons don't work nor the external links in the files. This is a major isuue and we must find a solution for this.
Best Regrads!
Itale

So far I made a bit of progress and the following happens:
The original file is created in InDesign CS5 for Mac with animations, sounds and internal and external (Go To URL) links.
Once exported to SWF from Indesign and opened either with Flash player or Firefox on the Mac everything seems to be in order. Once I open the file on a browser on the PC s.a. Explorere or Firefox the external links won't work. All the rest works but the GoTo URL won't open the url's
I can't seem to find a reason for this. Are you familiar witrh this issue and if so do you have any suggestions that may solve this issue?
Kind Regards

Similar Messages

  • How can i setup pages to automatically open when double clicked.  Currently when I double click it creates cpgz file and does not open.  The only way to open pages doc is to manually ask to open with pages.

    Currently when I double click it creates cpgz file and does not open.  The only way to open pages doc is to manually ask to open with pages.

    Hi Karen,
    Sounds like OS X has lost the association between Pages and its files.
    Start by quitting Pages, then going to Finder.
    In Finder, locate a .pages file. Click on it (once), then press command-I (eye, not one) to Get Info.
    In the Info window that opens, expand the Open With section.
    In this section, click on the pop-up menu and choose Pages (even if Pages is already shown).
    Click the Change All button to associate all files with the .pages extension with Pages.
    Close the info window.
    Double click any .pages file to check that Pages will now launch and open the file.
    Regards,
    Barry

  • Hi i have a learning HTML file with a data file include a swf files how can i open it in my ipad?

    hi i have a learning HTML file with a data file include a swf files how can i open it in my ipad?

    iPad do not support flash natively.
    Look in the app store, some browsers do support flash with limited functionality.

  • I have version 11,9,900,117 of plash player and windows 7. When I click a SWF file, it doesn't open.

    I have version 11,9,900,117 of plash player and windows 7. When I click a SWF file, it doesn't open. Only when I publish from inside flash I can see the swf

    Are you using the Standalone Flash Player 11.9 Projector?

  • IE not opening swf file but it is opening at mozzila as weel as netscape

    Hi All,
    IE not opening swf file but it is opening at mozzila as weel
    as netscape
    see following link at netscape & IE and mozilla too
    http://ugmumlmri40/mrIWeb/mrIWeb.dll?I.Project=DIMENSIONFLASH&i.test=1
    Thanks,
    Ganesh

    that's a strange looking url.

  • Created help file either won't open or opens blank when emailed or copied for another user to see it.

    Created help file either won't open or opens blank when emailed or copied for another user to see it.
    Our HR person made a help file she wants to email to someone or copy to a network share.
    -If she emails it the other person cannot open it.
    -If she copies it even from her desktop where she saved it to the folder with all the other files, it opens blank.
    Any help would be appreciated.

    I think they must be swapping out .html for .chm in DW or something. What the OP describes sure sounds like what happens when you do that.
    @dfiore27101
    DW doesn't support .chm file types. Adding the extension doesn't compress the images into the file to create a true .chm.
    Adding .chm will make a perfectly good .html file stop displaying in DW though.
    An easier way to send someone .html help files would be to archive their folder as a .zip then email the .zip. The recipient would then need to extract the archive to view the files in their browser.
    I don't know of any way to create real .chm files in DW.

  • Strange Problem - All of my preloaded .swf files play at once

    Hey guys,
      I've been getting a strange problem that I haven't been able to debug.  I recently developed an interactive audio and video treatment program that users click through in which a master swf file (DTM-Start.swf) uses ActionScript upon first being loaded to load the rest of the program in the background.  Here's how the code looks: 
    import flash.display.MovieClip;
    import flash.display.Loader;
    import flash.net.URLRequest;
    import flash.events.Event;
    // create movieclip objects to hold the loaded movies
    var intr1:MovieClip;
    var maladaptIntr1:MovieClip;
    var maladaptIntr1Loader:Loader = new Loader();
    var maladaptIntr1Request:URLRequest = new URLRequest("DTM-Maladapt1.swf");
    maladaptIntr1Loader.load(maladaptIntr1Request);
    maladaptIntr1Loader.contentLoaderInfo.addEventListener(Event.COMPLETE, maladaptIntr1Loaded);
    var intr1Loader:Loader = new Loader(); 
    var intr1Request:URLRequest = new URLRequest("DTM-Intr1.swf");
    intr1Loader.load(intr1Request);
    intr1Loader.contentLoaderInfo.addEventListener(Event.COMPLETE, intr1Loaded);
    function maladaptIntr1Loaded(event:Event):void
        maladaptIntr1 = event.currentTarget.content as MovieClip;
        maladaptIntr1.stop();
        addChild(maladaptIntr1);
        maladaptIntr1.y = -1000
        trace("maladaptIntr1");
    function intr1Loaded(event:Event):void
        intr1 = event.currentTarget.content as MovieClip;
        intr1.stop();
        addChild(intr1);
        intr1.y = -1000
        trace("intr1");
    function playIntr1() {
       intr1.y = 0;
       intr1.play();
    function playMaladapt1() {
        maladaptIntr1.y = 0;
        maladaptIntr1.play();
    So that's the idea.  What's strange is that when I load a .swf file compiled with AIR 2.6 (because the user interacts with the movie and a text file is output) it's fine too, but as soon as I add any actionscript, even if it's just a stop() command, to a .swf file compiled with AIR, the DTM-Start.swf loads and then plays all of the movies simultaneously so they're all going off at once.  Essentially, flash seems to be ignoring the maladaptIntr.stop() command in the Loaded function, for instance.  I just don't understand why adding any Actionscript whatsoever to a .swf compiled with AIR would make my DTM-Start do this.  I am very confident this is the issue too, because loading .swf files compiled with the FlashPlayer with action script are fine...AIR .swf files without Actionscript are fine too, it's only AIR .swf files with ANY actionscript that cause this problem....
    Any ideas?
    Much appreciated!
    Thanks,
    Ricky

    One solution is simply to have a stop() in the constructor of the document Class of each swf you're loading. Another solution is something like:
    package {
         class MainDocument extends MovieClip {
         protected var swfs:Array = ['DTM-Maladapt1.swf', 'DTM-Intr1.swf'];
         protected var positions:Array = [{x:0, y:0}, {x:0, y:0}];
         protected var movies:Array /*of  MovieClips*/ = [];
         protected var loadIndex:int;
         protected var playIndex:int;
         protected var curremtMovie:MovieClip;
              public function MainDocument() {
                   super();
                   loadMovie(loadIndex);
              protected function loadMovie(loadIndex:int):void {
                   var loader:Loader = new Loader;
                   loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
                   loader.load(new URLRequest(swfs[loadIndex]));
              protected function onLoadComplete(e:Event):void {
                   var mc:MovieClip = LoaderInfo(e.currentTarget).content as MovieClip;
                   mc.stop();
                   var position:Object = positions[loadIndex];
                   mc.x = positions.x;
                   mc.y = positions.y;
                   addChild(mc);
                   movies[movies.length] = mc;
                   loadIndex++;
                   if (loadIndex<swfs.length) {
                        loadMovie(loadInxed);
                   } else {
                        playMovie(playIndex);
              protected function playMovie(playIndex):void{
                   if (currentMovie) {
                        currentMovie.stop();
                   currentMovie = movies[playIndex];
                   currentMovie.play();
    Note that with this approach you don't need to create a whole new set of logic each time you want to add a new swf to load.

  • Does DW create .swf files?

    Hello, I have Creative Suite 2, and have been asked by a
    client (I am also a web developer, but mainly using ASP) to rescue
    their website. Their designer has *lost* the original files which
    were written in Dreamweaver, so he tells me, and I don't have a
    copy of Dreamweaver.
    AS I have CS2 - photoshop, illustrator, indesign, GoDesign,
    is there a way I can get Dreamweaver, or another product cheaply,
    just so I can help this one client out? I am not too sure I
    actually want to plunge in and buy Dreamweaver, as I don't really
    know what I would use it for, and I expect the learning curve to be
    as steep as the other Creative Suite products were!
    If anyone could recommend/suggest a fix for me (all I have
    are .html and .swf files that are sitting on my client's website),
    for me to be able to update his website, that would be great - I
    really don't want to have to scrap what he has and start over in
    another software package. Or if you can convince me that it is easy
    to start desiging flash files, maybe I might go there! (I presume
    Dreamweaver's primary purpose is to create Flash websites?)
    Many thanks!
    Teresa

    Is the current site a Flash site? If it is, you are in big
    trouble....
    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
    ==================
    "teresafr" <[email protected]> wrote in
    message
    news:fabseg$9qd$[email protected]..
    > Hello, I have Creative Suite 2, and have been asked by a
    client (I am also
    > a
    > web developer, but mainly using ASP) to rescue their
    website. Their
    > designer
    > has *lost* the original files which were written in
    Dreamweaver, so he
    > tells
    > me, and I don't have a copy of Dreamweaver.
    >
    > AS I have CS2 - photoshop, illustrator, indesign,
    GoDesign, is there a way
    > I
    > can get Dreamweaver, or another product cheaply, just so
    I can help this
    > one
    > client out? I am not too sure I actually want to plunge
    in and buy
    > Dreamweaver,
    > as I don't really know what I would use it for, and I
    expect the learning
    > curve
    > to be as steep as the other Creative Suite products
    were!
    >
    > If anyone could recommend/suggest a fix for me (all I
    have are .html and
    > .swf
    > files that are sitting on my client's website), for me
    to be able to
    > update his
    > website, that would be great - I really don't want to
    have to scrap what
    > he has
    > and start over in another software package. Or if you
    can convince me that
    > it
    > is easy to start desiging flash files, maybe I might go
    there! (I presume
    > Dreamweaver's primary purpose is to create Flash
    websites?)
    >
    > Many thanks!
    > Teresa
    >

  • Can't create new file automator action

    I'm trying to create a new Automator action that prompts the user to choose a new file. The Action is similar to the "Ask for Finder Items" actions except that it asks the user to choose a new file and not one that already exists.
    I chose to write it in applescript:
    script PicknewFile
    property parent : class "AMBundleAction"
    on runWithInputfromAction_error(input, anAction, errorRef)
    return choose file with prompt "Where do you want to save it?"
    end runWithInputfromAction_error
    end script
    When I try and run it, I get the following error message in the Xcode console.
    [Switching to process 10606]
    Program received signal: “EXCBADACCESS”.
    [Switching to process 10606]
    sharedlibrary apply-load-rules all
    No memory available to program now: unsafe to call malloc
    Data Formatters temporarily unavailable, will re-try after a 'continue'. (Not safe to call dlopen at this time.)
    kill
    Does anybody know when this happens?
    Thanks,
    Scott

    Looks like I was wrong. I created a brand new project in Xcode and all I did as add "choose file name" to the applescript. It still gets a "EXCBADACCESS". I also tried a 'display dialog "Error"' in my applescript and it does the same thing.
    Here is the script the fails. Everything else in the project is default.
    script ChoosenewFile
    property parent : class "AMBundleAction"
    on runWithInputfromAction_error(input, anAction, errorRef)
    -- Add your code here, returning the data to be passed to the next action.
    display dialog "Error"
    return input
    end runWithInputfromAction_error
    end script
    In the debugger, this is the stack:
    #0 0x91184917 in objc_msgSend
    #1 0x63707472 in ??
    #2 0x16c01e36 in DecodeAEDescInternal
    #3 0x16c02b4b in DecodeObjectSpecifier
    #4 0x16c01c24 in DecodeAEDescInternal
    #5 0x16c022bb in DecodeAEList
    #6 0x16bccdd0 in ASExecuteEvent_PushSendStackFrame
    #7 0x16bccfcc in ASExecuteEvent
    #8 0x918026cb in callComponent_4444
    #9 0x16bc3d4a in AppleScriptComponent
    #10 0x917efcb6 in CallComponentDispatch
    #11 0x972455df in OSAExecuteEvent
    #12 0x00339ffe in +[BAObjectProto invokeScriptHandler:forObject:args:error:]
    #13 0x0033a363 in -[BAObjectProto invokeScriptHandler:args:error:]
    #14 0x0033b581 in -[BAObjectProto forwardInvocation:]
    #15 0x92f760c4 in __forwarding__
    #16 0x92f75bf2 in _forwarding_prep_0__
    #17 0x000718af in -[AMAction runWithInput:loopParent:]
    #18 0x00070d2f in -[AMWorkflowRunner runAction:withInput:loopParent:]
    #19 0x000c60a8 in -[AMWorkflowRunner runAction:]
    #20 0x0013261d in -[AMRunActionOperation main]
    #21 0x9094d34c in -[__NSOperationInternal start]
    #22 0x9094cfe0 in ___startOperations_block_invoke2
    #23 0x91caa7b8 in dispatch_call_block_andrelease
    #24 0x91c9c97e in dispatch_workerthread2
    #25 0x91c9c401 in pthreadwqthread
    #26 0x91c9c246 in start_wqthread
    Any more advice would be appreciated.
    Scott

  • How to create swf file?

    Hi. Is there any way to export a file to swf format? Your help would be very much appreciated.

    Current versions of After Effects do not export SWF files. Previous versions exported SWF files but did so very badly, which is why we removed the feature.
    You can download a previous version of After Effects if you absolutely need to create a SWF file from After Effects.

  • Creating swf file with along with linked flv content

    Can anyone tell me the procedure for creating an swf and
    linked flv file with Sorenson Squeeze for deployment on the Breeze
    server or in Breeze Presenter. All Adobe will share is the how to
    ithis with Flash. I feel certain this can be done, but all my
    attempts have failed in that the published swf will not display the
    referred flv content. To interpret the Flash procedure it seems
    that all one has to do is add /output "file name" to the swf player
    flve linked url, but the published swf file does not seem to be
    linked with the published flv file. - even when I have made that
    flv file public.

    You wrote  "I've imported the FLV into the 'stage' and added a skin through the wizard" from this I conclude that you choose the deafult option, that says "load external video with plyback component" (only this one offers you a skin wizard). But when you deploy that swf to a server it still needs the flv source (search Help for FLVplayback), and even the Skin (its an extra swf) must be depoyed to the server. What you instead want to do is option 2: embed FLV in swf. There are some disadvantages to this solution: the longer the video, the more probable it is, Audio and Video will get desynchronized, and: you can`t use Adobes premade skins for the controls

  • Creating swf file?

    Hi Client has asked me to create a .swf file, which I have
    done from my Quicktime film, now I have CS3 video encoder and all
    works fine and I get a .flv file that plays fine, so how do I
    create a .swf file, and what is the difference between them?

    there's no theoretical reason a swf can't create a new swf, but i've never seen it done and there's built-in functionality that would allow you to do that.

  • Published SWF File out of Captivate opens in Browser

    I have a SWF created in Captivate. Inside the published
    Captivate file is a link to open another SWF file.
    The original SWF file opens in Flash Player, but when I
    access the button to open the other SWF file, that SWF file opens
    in my browser.
    Can anyone explain to me why this is happening?

    you either didn't clear your cache or you uploaded your html and/or swf to the wrong location.  retry.

  • Can't open Adobe Flash for SWF file...keeps opening Install Manager instead.

    Hi, I need to open a SWF file made from InDesign (interactive PDF). And when I click on it, Adobe Flash Install Manager keeps popping up with an uninstall manager. I've re-downloaded it three times, re-installed it 3 times. It's just not working. Any suggestions?
    I'm on a Macbook Pro if it matters.

    To view a local SWF you will need the standalone player (Projector) from http://www.adobe.com/support/flashplayer/downloads.html

  • How to create a bookmark with action to open a file

    Hi all,
    I'm a newbie in javascripting for Adobe Acrobat (I'm running on Acrobat Professional 8) so please don't kill me for my question.
    I want to run a batch sequence to create a bookmark which opens a specific file in lots of pdf files. The way I'm following is:
    1. To create a batch sequence to run a javascript on selected pdf files.
    2. I've tried several ways of writing the script:
    2.1.
    var myRoot = this.bookmarkRoot;
    myRoot.createChild("Index");
    var Index = myRoot.children[0];
    Index.setAction("app.openDoc('/relative path to the file.pdf');");
    2.2.
    var myRoot = this.bookmarkRoot;
    myRoot.createChild("Index", "app.openDoc('/relative path to the file.pdf');");
    In both cases I'm getting errors in JavaScript Debugger. First of all, I see:
    NotAllowedError: Security settings prevent access to this property or method.
    app.openDoc:1:Bookmark undefined:Mouse Up.
    Please advise what I'm doing wrong and what is the easiest way to create a such bookmark which opens a simple pdf file which stored in the same directory where all files are.
    Regards,
    Dima

    Hi try67,
    Thanks for your advise. You've saved me a lot of time. I'was looking through the JavaScripting guide but didn't take a look into API refference for some reason.
    For those, who're interested in the correct code is:
    var myRoot = this.bookmarkRoot;
    myRoot.createChild("Index");
    var Index = myRoot.children[0];
    Index.setAction("app.openDoc('index file name',this);
    This works only if your file is placed into the same directory.

Maybe you are looking for

  • Download of JHeadstart not working

    Has anyone had a problem downloading JHeadstart? I go to http://www.oracle.com/technology/consulting/9iServices/JHeadstart.html click on download to which I get the "agree to our license," I agree then get brought back to the original page. I have tr

  • Can't download itunes+quicktime.

    New ipod. Can't download itunes+quicktime. Download stops at quicktime. Error message. HKEYLOCALMACHINES\software\classes\quicktimeplayerlib.quicktimeplayerapp\CLSID verify you have access to that key.I have opened registry edit but either am unable

  • File sharing on Garageband?

    Does any one know how to import MP3 files into Garageband. I have tried putting document into sharing section on I Tunes but the audio area is greyed out on I Pad. Any help gratefully received. I am a novice user so far.

  • Performance Metrics

    Performance Metrics Hi All , EBS Version 12.1.3 DB Version : 11.2.0.3 Today in one of the meeting we were asked if our system was capable to handle the growth in the next 6-8 Months. Now before I could get inputs from them we decided to do some homew

  • Changing existing Oracle licences on all existing systems (ECC;CRM;PI,BI) with HANNA(and use HANNA DB)

    Hello Maybe not the best section .. But we have in mind changing existing Oracle licences on all existing systems (ECC;CRM;PI,BI) with HANNA(and use HANNA DB).. I wander what would be pro and what cons? Thank you a lot Jan