Playing a .swf on a PC?

My client is trying to play a .swf file (outside of a
browser) on his PC. He has Flash Player 10 installed, but the
player doesn't seem to recognize the file. I can play this file on
a Mac with no problems. Any suggestions would be greatly
appreciated.
Thanks,
D.

He has the browser plugin - what he doesn't have is the
stand-alone player
that comes only with the flash program. You can convert the
SWF to an EXE
(open SWF and go to File > Create Projector...). Then zip
the EXE before
sending him (Email clients will likely flag attached EXE
files as harmful
and junk them).
The EXE will package the SWF with the player. He'll be able
to watch your
SWF but it doesn't mean he will have the stand-alone player
to view other
SWFs with - he needs to buy the flash program if he wants to
watch SWF
outside of his browser (an expensive decision).
Adobe Certified Expert
www.keyframer.com
www.mudbubble.com
(if you want to email me, don't look)
"Pasewark" <[email protected]> wrote in
message
news:gfd137$2tj$[email protected]..
> My client is trying to play a .swf file (outside of a
browser) on his PC.
> He
> has Flash Player 10 installed, but the player doesn't
seem to recognize
> the
> file. I can play this file on a Mac with no problems.
Any suggestions
> would be
> greatly appreciated.
>
> Thanks,
> D.
>

Similar Messages

  • Firefox doesn't play embedded swf

    I've looked on many forums, including Firefox, with no real answer. Running Firefox 4. It just doesn't play embedded SWF. My Adobe Flashplayer is up to date, so is the plugin. The page displays properly. But the area that should be displaying a movie is just represented by a tiny square. No error message appears. The same page doesn't show the movie in IE9 either.
    Now from looking at the page information, it just requires Flashplayer 6 and above for the SWF area. I do have Flashplayer 10. The plugin says Shockwave Flash player 10 is up to date. Many other pages with different types of embedded movies play properly.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Also check that you aren't blocking cookies.
    *https://support.mozilla.org/kb/Cookies
    *http://kb.mozillazine.org/Cookies
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Note that a reset imports cookies, so isn't really suited if cookie issues are a possible cause, unless you clear the cookies.

  • Trying to play an SWF file in an MS Word File

    I found a cool .SWF file and would like to create a Birthyday
    card and attach the SWF file (imbed it in the MS Word file (the
    Birthday card) that I am trying to create. so the recepient can
    only doubleclick on the SWF icon in the MS word and play it.
    How can I attach the the .SWF in the MS Word file so it play
    in a window within the Word document?
    I can play the SWF file by manually running it under Windows
    Explorer (double click on the file and say Open with Explorer
    Browser).
    Thank you,
    :confused

    dakota74 wrote:
    Does anyone have any ideas?
    Ross
    Yes, I have an idea.  The Media Manager video streaming is nowhere near ready for prime-time and should not have been released in its current buggy version.
    I've had it through beta testing and it has NEVER consistently imported and subsequently played many of my videos, despite being in a supported format.  I don't see any progress being made on this, but they released it anyways.

  • I applied a template to a page with SWFs and now that page does not play the SWFs. Why?

    I applied a template to a page with SWFs and now that page does not play the SWFs (just a blank area where the SWF should be). When I detach the template it will play the flash file. This site will eventually be updated via Adobe Contribute. And I just discovered that when applying a template to a page that uses HTML datasets (Master/Detail),it no longer reads the Master/detail regions and displays a blank. Any thoughts?
    [Moved to Dreamweaver forum by moderator]

    Firstly, you shouldn't really 'apply' a template to a page, you should create a child page by going to FILE>NEW>Page from Template.  Too many things can happen when applying a template the way you are doing it. eg:; editable and non-editable regions not matching up and being asked where to place these regions and in all likelihood, you end up with 2 or more of the same region.
    When a swf file is inserted into a page, a corresponding Scripts folder is written automatically is stored in the root of the site - it is also linked to in the head of the document. What I believe is happening is that when you apply a template to the page, the Template has no idea that there is a swf file on the page and is not aware of the correct link to the Scripts folder.  If you do a test and add the swf file to the template page itself, I bet that the links to the swf and the scripts folder are correct - because DW knows the correct path to the script file.   Hence the reason the page probably works when you detach it from a template.

  • Play multiple .SWF in sequence

    I have two swf files that I would like to play in sequence in a main  flash file.  The two swf files are partA.swf and partB.swf. I set up two  frames using this actionscript 3 snippet:
    Frame 1:
    Code:
    var partARequest:URLRequest = new URLRequest("partA.swf");
    var partALoader:Loader = new Loader();
    partALoader.load(partARequest);
    addChild(partALoader);
    Frame 2:
    Code:
    var partBRequest:URLRequest = new URLRequest("partB.swf");
    var partBLoader:Loader = new Loader();
    partBLoader.load(partBRequest);
    addChild(partBLoader);
    I made sure to set new loaders that  correspond to it's proper swf file. So partA.swf goes with partALoader  and partB.swf goes with partBLoader.
    I noticed that individually they work great. If I just set up frame 1 or  frame 2 by themselves, the swf file plays. When placed together,  however, either frame 1 plays without going to frame 2 OR frame 2 plays  by default without playing frame 1 first.
    How can I get this to work properly in sequence?
    Just to break things down, this is how I would like the set up.
    1. Play frame 1 which plays partA.swf,
    2. Stop when finished and go to frame 2 which plays partB.swf
    3. Stop movie, no need to loop.
    4. Would like to have option for adding more swf files
    I don't use flash much, so guidance with code is much appreciated. I  would think this is a simple task, but searching for a proper solution  hasn't been successful.
    Also just to clarify from previous searches and posts I looked at: I am  not using buttons, and this is using actionscript 3.0 not 2.0, and this  is using only .swf files.
    Thanks a bunch

    Here's a nice trick that Andrei1 taught me  a week ago or so that should sort out your problem:
    On the last frame of partA.swf, you could dispatch an event, like so:
    dispatchEvent(new Event("advanceParentTimeline"));
    Then, in your parent movie on the frame that partA gets loaded, you can listen for the text, like so:
    stage.addEventListener("advanceParentTimeline", onTextRequest, true);
    Add the following function to the same frame with the listener mentioned above, and if your parent movie hears that text, send your movie to frame 2, like so:
    function onTextRequest(e:Event):void {
         gotoAndStop(2);
    Hope that helps,
    ~Chipleh

  • I've installed Flash Player, why can't I play a swf file?

    I'm trying to play a swf file in Windows 7. I've been able to do this before many times, using Flash Player, but it doesn't work now. I've recently done a complete reinstall of Windows 7 and my apps, and this is the first time I've tried to play a swf file since then.
    When I double-click a swf file, I get the "Windows can't open this file" dialog box. If I select "Use the web service..." it takes me to the Adobe website Flash Player installation page. (I've installed it previously, and I've installed it - twice - today.) If I select "Select a program from a list...", the list doesn't include Flash Player, though it does allow me to play the file in a browser.
    Some of my swf files I created with Captivate, and published them with an html file. When I open the html file, the swf file plays properly. Shouldn't I be able to play the swf file in the player, without opening the html file?
    Should I be able to see the player in my start menu programs, or in the Programs folder? I can't find it on my computer. Is there something else I need to install?
    -Stuart

    http://forums.adobe.com/thread/1195540

  • Is it possible to play a swf file over html, but still be able to click on the html site below?

    I have a website built in html, with normal clickable content - a few buttons scattered around the centre.
    An absolute positioned div sits on top of the site and plays a swf file which moves out of view and stops. I have set everything to transparent and the user can see the site below as it is revealed.
    But once the swf file has moved off screen, none of the content is clickable (as I suppose the flash object is still there).
    I've no idea if this is normal, or if there is a work around so that the user can reach the html content below after the anim has moved out of the way... ?

    I'm sorry I wasn't very clear. When I just try to open the SWF file by double clicking it, it opens in FireFox and it is resized to fit the screen.  When I open the html file that flash provides it looks great, it is the perfect dimensions.  There is probably no way to make the swf file limit it's size when it is opened by itself, I just wanted to hear someone say it.

  • Can you play/view swf files on adobe air for android?

    Hi, yes; I'm new here, as well as to Adobe Air, and I'm still trying to learn the ropes around here, and I apologize in advance if this has already been asked, or I have placed this question in the wrong forum.
    The thing is, I was wondering if it was possible to play my SWF files via adobe air for android; and if so, how? Thanks in advance either way.

    Can you please give directions where can i clear that cash.
    Anyway i don`t think its the case, because this is first time i hooked phone to internet, and first time i launched Android app store.
    Edit:
    I went to https://market.android.com and there is Adobe air app. But when i try to download it says that my device doesn't support it (Samsung Galaxy GT-I5500) By default it comes with android 2.1 and doesn't support Adobe air, but i upgraded firmware to 2.2.
    Maybe that is the reason it doesn't show me Adobe AIR in app store - based on my phone, not my Android version ?

  • Load and consecutively play external swf's

    Hi,
    I have three external swf files - part1, part2 and part3. I
    know how to load one clip but I would like to know how to
    dynamically load them into an empty MC and then play them in full
    consecutively without any fancy transitions so that it plays like
    one big movie using Actionscript (no button triggers!).
    I have some very BASIC actionscript knowledge but am not sure
    which way is best. If someone could give me some "simple" step by
    step advise it would be grately apreciated.
    Danielle

    Ok I followed your instructions and when I play the main swf
    (I call - load_swfs) file it plays part1.swf fine but then it gets
    to the first frame of part2.swf (which is blank) and just stops and
    doesn't go any farther! Did I put something in the wrong place?
    I've written what I did and where below.
    // In my main file (load_swfs) it's just a single blank frame
    with this code in it :-
    tl=this;
    swfA=["part1.swf","part2.swf","part3.swf"];
    dep=0;
    numLoaded = 0;
    totalLoad=3;
    lo=new Object();
    lo.onLoadInit=function(target){
    numLoaded++;
    checkIfAllLoaded();
    function checkIfAllLoaded(){
    if(numLoaded==totalLoad){
    holder1.play();
    } else {
    mc=this.createEmptyMovieClip("holder"+(numLoaded+1),dep++);
    mcl.loadClip(swfA[numLoaded],mc);
    mcl=new MovieClipLoader();
    mcl.addListener(lo);
    mc=this.createEmptyMovieClip("holder"+(numLoaded+1),dep++);
    mcl.loadClip(swfA[numLoaded],mc);
    // In part1.swf in the last frame is :-
    tl.holder2.play();
    this.removeMovieClip();
    // In part2.swf frame 1 is blank with a stop(); and in the
    last frame is:-
    tl.holder3.play();
    this.removeMovieClip();
    // In part3.swf frame 1 is blank with a stop();
    Let me know where I went wrong!
    Thanks

  • Problem playing an swf file created in Bridge

    Hello everyone
    I have created an web gallery using Bridge and tried playing a swf file containing the slideshow with no luck. When I double-click the file, it open an Adobe Flash Player window but a spiral appears at the centre and just keeps turning. Because my intention is to upload the swf file to a website, I really need to get the file to play the slideshow.
    Has anyone succeeded in making a standalone swf file using Bridge or any other Adobe product? If so, please let me know how to.
    Thank you,
    Pom

    Henk,
    I'm not on 3.0 so I can't help you out, but I would suggest re-posting on the Enterprise Administration portion, perhaps it'll get more notice there for a resolution.
    Thanks,
    John

  • Automatically Play of SWF File

    i want to create SWF file (loader.swf) wherein have multiples
    movie clip inside...
    i want to automatically play other swf file by calling.. when
    the loader.swf finish without using any buttons...

    No Body Whisper me!!!!!!

  • Flash player can't play a .swf file alone

    I've have a weird issue regarding flash.
    I used Flash CS5 to create an interactive presentation. Everything works perfectly.
    My problem is, for some unknown reason, everytime I try to open a stand alone .swf using flash player, the player always opens my interactive presentation instead  and tries to load the .swf INTO it. Using the finder's info window, when I do select a .swf, I get the information all my .swf have been changed to "interactive presentation files", and the default application assigned to open these files is my own presentation.
    I can manually change these settings to select Flash player or Flash CS5 back as the default application for all .swf's, but as soon as I close the info window, the files immediately becomes "interactive presentation" files again, so Flash player insists in openning the fiels inside my presentation.
    There's a permanent way to fix this?
    I'm using a Mac Intel core duo 2.
    EDIT: I temporarily solved the problem deleting all copies of my presentation's projector. The flash player atemmpted to use another presentation instead to open .swf files, so I deleted that one too. After that, now plays the .swf files as normal. The only problem is, if for any reason I do re-install any of my interactive presentations proyectors, Flash player  immediately tries to use them to play the .swf's... so the problem really remains unsolved.

    The web flash player does not play stand alone .swf files on your computer.

  • Web behavior plays in swf but not in html

    Please explain why when I create a button and assign to it
    web behavior it plays in swf file (when I press Ctrl-Enter) and it
    does not play in HTML (when pressing F12 - it opens html page but
    does not go to URL while clicking on the button)

    To explain better my problem:
    Open C:\program Files\Macromedia\Flash8\Samples and
    Tutorials\Tutorial Assets\Basic Tasks\Add Button Animation and
    Navigation\buttons_finished.fla
    When I press Ctrl-Enter I then can press the button and it
    opens URL page.
    When I press F12 t(publish preview in HTML) and click on the
    button nothing happens - URL does not open.

  • Play external swf

    I've got some existing swf movie that i want to load into a
    another swf as external swf. my problem is that these existing swf
    doesn't have stop() at the end of the movie, it plays in a loop.
    but i want only want it play once per button release, what should i
    do.

    Ok I followed your instructions and when I play the main swf
    (I call - load_swfs) file it plays part1.swf fine but then it gets
    to the first frame of part2.swf (which is blank) and just stops and
    doesn't go any farther! Did I put something in the wrong place?
    I've written what I did and where below.
    // In my main file (load_swfs) it's just a single blank frame
    with this code in it :-
    tl=this;
    swfA=["part1.swf","part2.swf","part3.swf"];
    dep=0;
    numLoaded = 0;
    totalLoad=3;
    lo=new Object();
    lo.onLoadInit=function(target){
    numLoaded++;
    checkIfAllLoaded();
    function checkIfAllLoaded(){
    if(numLoaded==totalLoad){
    holder1.play();
    } else {
    mc=this.createEmptyMovieClip("holder"+(numLoaded+1),dep++);
    mcl.loadClip(swfA[numLoaded],mc);
    mcl=new MovieClipLoader();
    mcl.addListener(lo);
    mc=this.createEmptyMovieClip("holder"+(numLoaded+1),dep++);
    mcl.loadClip(swfA[numLoaded],mc);
    // In part1.swf in the last frame is :-
    tl.holder2.play();
    this.removeMovieClip();
    // In part2.swf frame 1 is blank with a stop(); and in the
    last frame is:-
    tl.holder3.play();
    this.removeMovieClip();
    // In part3.swf frame 1 is blank with a stop();
    Let me know where I went wrong!
    Thanks

  • Play more swf-s from playlist

    Hi,
    I have installed the Adobe Flash Player version 9.0.124.0 on
    my PC. It's work under IE, Opera and Firefox, but play only one swf
    file which I selected. I want to play more swf files one after the
    other automatically, like from playlist. What must I do to play
    from playlist or from more selected files automatically (also
    repeat the complete playlist when it's finished the playlist)? Or
    whith which (free) player can I do it?
    Thanks

    Thanks...
    This question has a simple answer. There is a feature of
    Flash that you can export called a projector. A projector is a
    standalone EXE that wraps the Flash Player and the SWF content
    inside of it. You'll see the projector option in CS3's Publish
    Settings.
    So just create projectors and distribute that EXE.
    I should note that projectors created with Flash CS3 will
    contain the Flash Player 9 runtime (inside the EXE). You can also
    create projectors by opening a SWF in the standalone player, then
    choosing File> Create Projector.
    You can get the standalone player for FP10 from
    "Archived Flash Players available for testing purposes"
    http://www.adobe.com/go/tn_14266
    Regards,
    Bentley Wolfe
    Senior Support Engineer, Flash/Flash Player/Digital Editions
    Adobe

Maybe you are looking for

  • Number Overflow when it is within the range (Long)

    Hi, I am using Oracle JDBC Drivers to write a CMP (Container Managed Persistance) beans which has a CMP Field of long value in the table it is Number(14) which is well under the limits of long datatype, the value is also currentmillis which is millis

  • My battery keeps on saying that I need to calibrate it

    I've bought this laptop like 3 weeks ago and it's been running fine so far till about a few says ago. I noticed that the temperatures increased by 5C during idle time, from 45C to 50C for the cpu. I tried using the HP support assistant to find a solu

  • Clear doc

    Hi, may i know if there is a way to clear open item to become cleared item for document not originally from fi like RE. Thanks Rgds

  • Error due to PI 7.1 hard coding

    Hello all, Have installed PI 7.1 and ran the post-installation steps.Now, the goal is to run a demo that will allow one to use PI 7.1 with services residing on a gsoap server. So, one does the following: 1. http://<host>:50000/rep/ 2. It then starts:

  • ATP Based on ASCP Planned data - how to exclude Subiventory

    We are moving from ATP based on ASCP collected data to ATP based on planned data. In our major warehouses, we have subinventory 'DOCK' , it is not checked ( not enabled) to Include in ATP, but it is flagged ( enabled ) as Nettable subinventory. In AT