Importing Flash in Website?

I am running on Dreamweaver CS5 in Code View...I have imported a flash video, which displays in design view, but will just keep loading in the actual browser and never start the video. It is running through an Apache localhost and is a PHP file...could that mess it up? I am also using jQuery with a bunch of hidden popup views, that work fine. What's wrong with my flash? Here is my source code to my flash video file:
<object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-4… width="496" height="310">
<param name="movie" value="bornagain.swf">
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="swfversion" value="6.0.65.0">
<!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don't want users to see the prompt. -->
<param name="expressinstall" value="Scripts/expressInstall.swf">
<param name="BGCOLOR" value="#333333">
<!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
<!--[if !IE]>-->
<object type="application/x-shockwave-flash" data="bornagain.swf" width="496" height="310">
<!--<![endif]-->
<param name="quality" value="high">
<param name="wmode" value="opaque">
<param name="swfversion" value="6.0.65.0">
<param name="expressinstall" value="Scripts/expressInstall.swf">
<param name="BGCOLOR" value="#333333">
<!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->
<div>
<h4>Content on this page requires a newer version of Adobe Flash Player.</h4>
<p><a href="http://www.adobe.com/go/getflashpl… src="http://www.adobe.com/images/shared/… alt="Get Adobe Flash player" width="112" height="33" /></a></p>
</div>
<!--[if !IE]>-->
</object>
<!--<![endif]-->
</object>

what's your url?

Similar Messages

  • How can I pubish SWF interactive magazine to flash based website? It's not working!

    I hope someone can help me launch my first interactive magazine (SWF) to our website with ID 5. Okay, my hard copy mag came out great so then I started on the interactive edition. Everything was going swell with adding 3 short videos ( FLV  ) and creating 3 slide shows. When I previewed it by exporting to SWF I could preview it in my browser fine. Page curls, fade in words (although the “hide until animated” options only works in two out of about 7 instances. (same settings) file:///C:/Users/lauralaptop/Documents/NEW%20PUBLICATION%20QUARTERLY%20JOURNAL%202011%20se pt%202/LIFE%20apr-may-june%202011%201st%20issue%20INTERACTIVE%20TRYOUT%20Aug%2031%204pm.ht ml
    I then followed instructions from another Adobe exercise, exported it to Flash, went to Publish Settings, but of course when I pressed “publish” I didn’t get the same result as the teacher…I got an error message about text. I searched a forum with the same message I got and saw that making sure my text setting was set for Classic, solved someone else’s problem. So I did and was able to “publish”. But now, when I open either the SWF or HTML file, it’ just rapidly repeating the 12 pages in my file in a loop!
    file:///C:/Users/lauralaptop/Desktop/LIFE%20apr-may-june%202011%201st%20issue%20INTERACTIV E%20TRYOUT%20Aug%2031%204pm.html
    I have spent most of the summer self teaching myself InDesign CS5 (not easy!) and am excited to be able to put out an interactive SWF file that can be opened in a Flash player through our Flash based website. I feel like I’m just inches away for launch but now I’m getting frustrated. Isn’t this going to be possible?
    Also, when I publish it in Flash, it creates a SWF file AND an HTML file. But on our website, I have only one option to make a link to a document OR an outside link to open a file. How does that work?
    Many thanks for whoever can help me out here. This was supposed to be a spring issue. Had to change it to summer and now I guess it’s a fall launch!

    Thank you for your quick reply, Rob. Well, i can't open the link you gave me to mysite (got a 404 error), could you resend it?
    Originally, I exported the file to SWF (player) and just tried to link that file from our flash based website. It opens fine, page curls fine, slide shows fine, but when you click on the photos with videos, page 5 (father and baby) and two others, the image disappears and only a white comes up to fill that area.
    http://scpres.org/#/media-sermons-online/our-publications. Could you go to this link on our website to see what I mean? Go to the NEWSBREAK TRANSFORMS and click on the Life, Stories of Transformation.
    Rob, here is where i have very limited knowledge: As I said we use a flash based (read very user friendly) web hosting company. When I am in the back end to upload the swf file, I have only one option  - "attach a video, attach a document, attach a link" so how would I upload a "folder" with more than one item to the server?
    I thought it would be considered a video since the SWF file says SWF movie, but when I when i try to upload as a video, it doesn't come up as importable. (am i sounding really stupid?) Maybe I should admit that yes, I'm an ID5 newbie AND yes,  I'm no spring chicken but I have been working in CS2,3,4 for several years and now 5 and am quite proficient in the create aspect of Adobe products. It's just now the technical part about how to actually get my  in work published to the site.There isn't anyone else in my company able to help me so I have to reach out to this forum!
    I love ID and this is just my first effort but I'm looking forward to creating many more interactive magazines for my company.
    Thanks for any help.

  • How do I add flash cs4 game with AS3 to flash cs4 website??

    I have created a game in flash with ActionScript 3 and now want to add it to a website I have created with pages seperated into keyframes. Ideally, I am trying to have the game start when a link on the home page is selected. I would also like the users to be able to download the game themselves??? Any ideas for a flash novice??

    Thank you so much!!! I just added it with a UI Loader Component! Worked really well... although it looks like doing that picked up an issue with some of my code? It's now looping over and over again and the counter within my game (for giving players their score - highlighted in red), is not working?If you are a AS3 guru any help would be greatly appreciated, otherwise thank you so much for your earlier tips
    package
        import flash.display.MovieClip;
        import flash.events.*;
        import flash.utils.Timer;
        import flash.text.*;
        public dynamic class Gift extends MovieClip
            private var dx:Number = Math.random() * 10; // make gift scurry
            private var dy:Number = Math.random() * 10;
            public function Gift ()
                this.gotoAndStop(Math.ceil(Math.random() * 4));
                this.addEventListener(Event.ENTER_FRAME, scurry);   
                stage.addEventListener(MouseEvent.MOUSE_DOWN, kill);
            public function scurry (e:Event)
                if (this.x < 0 || this.x > 550)
                    this.dx *= -1;
                if (this.y < 0 || this.y > 576)
                    this.dy *= -1;
                this.x += this.dx; // make gift scurry
                this.y += this.dy;
            public function die()
                this.removeEventListener(Event.ENTER_FRAME, scurry);
                parent.removeChild(this);
            private function kill (e:MouseEvent):void
                if(e.target is Gift)
                    e.target.die();
                    score += 10;
                    scoreText.text = score.toString();

  • How do i import my previous website into iWeb?

    I had previously designed my website in iWeb and published it, i then had to wipe my hard drive but backed everything up, now i can't seem to open or import my old website back into iweb, any help please?

    John ~ In your backup, look for Domain.sites2 file which is usually located here:
    ...Double clicking that file should open it in iWeb.

  • I am looking for assistence how to import an existing website in Dreamweaver CS4

    I need help to import an existing website in Dreamweaver CS4

    Only have one Dreamweaver CS4 installed, trying to get my DW CS4 disk I
    bought installed on computer (done)  I only need to figure out  how to link
    my website to the DW CS4 on my second computer.
    L. Francesca Ferrari, L.Ac., DTCM, DMQ (China)
    Ferrari Center of Chinese Medicine
    222 Forest Avenue
    Pacific Grove, CA 93950
    831.818.3993
    www.francescaferrari.com
    L. Francesca Ferrari, L.Ac., DMQ (China)
    Department Chair Medical Qigong Science
    Five Branches University
    This message, together with any attachments, is intended only for the use of
    the individual or entity to which it is addressed and may contain
    information that is confidential and prohibited from disclosure. If you are
    not the intended recipient, you are hereby notified that any dissemination,
    or copying of this message, or any attachment, is strictly prohibited. If
    you have received this message in error, please notify the original sender
    immediately by telephone or by return e-mail and delete this message, along
    with any attachments, from your computer.
    From: "Nancy O." <[email protected]>
    Reply-To: <[email protected]>
    Date: Sat, 04 Sep 2010 18:34:03 -0600
    To: Francesca Ferrari <[email protected]>
    Subject: i am looking for assistence how to import an existing
    website in Dreamweaver CS4
    >> I do not know where the site files are. They are on my initial Mac laptop
    >> computer, and I use Hostway as my server.
    Do you mean you lost your local copy of your site files from on an old
    computer?
    Log-in to your Remote Server and GET the site files using DW or your favorite
    FTP application (Cute, Filezilla, WS_ftp, etc....)
    >> But I was distinctly told my the call yesterday with Adobe that I must have
    >> CS5 to get my website, www.francescaferrari.com with Dreamweaver on my
    >> second computer.
    Which version of DW did you have before?
    How many installations of DW did you have? You can have up to 2 at a time.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    >

  • Importing flash symbols from an external SWF using URLrequest

    Hello.
    I'm trying for several days now to properly import flash symbols into a flex application.
    i can't only @Embed because the swf file that contains the skins will not be available locally so i need to use URLRequest.
    This is what I've got so far.
    1. I created a flash file, lets call it foo.swf that contains several elements in the library and each element has both `Export for ActionScript` and `Export for runtime sharing` on. one of the elements is called 'test' which is a movieclip of an image.
    2. i created a flex project that creates the swf flashSkins.swf that contains the following Wrapper class:
            package
                import flash.display.Sprite;
                    public class Wrapper extends Sprite
                     [Embed(source="foo.swf",symbol="test")]
                        [Bindable]public static var test: Class;
    I tested to make sure that this class properly fetchs symbols from the flash file properly
    using the following code:
        <fx:Script>
            <![CDATA[
                public var wrapper:Wrapper;
            ]]>
        </fx:Script>
            <mx:Image source="{Wrapper.test}"/>
    it loads the image and shows it properly.
    3. I created another swf file that will fetch the flashSkins swf and import the Wrapper class from it. this is where i fail.
            public function loadSkins():void
                    bgLoader = new Loader();
                    var bgURL:URLRequest = new URLRequest('http://files.xpogames.com/flashSkins/flashSkins.swf');
                    bgLoader.contentLoaderInfo.addEventListener(Event.INIT,onLoaded);
                    bgLoader.load(bgURL);
                public function onLoaded(e:Event):void {
                    var clazz:Class = bgLoader.contentLoaderInfo.applicationDomain.getDefinition('Wrapper') as Class;
                    var a:Object = new clazz();
                    theimage.source=a.test;
            ]]>
          </fx:Script>
            <mx:Image id="theimage" />
    I tried using getDefinition with 'wrapper' or 'Wrapper' but on both cases i get an error that the variable is not defined.
    any ideas?

    Did you try using the Event.COMPLETE instead of Event.INIT?

  • How can OS X 10.3.9 users view Flash on websites?...

    How can OS X 10.3.9 users view Flash on websites?...

    I need to add one more thing for others who might benefit from the above note re Camino.
    I also at the same time downloaded new plug ins from Adobe for Flash 9. There were two plugins which I deleted. One of the two new ones was of a later date, the other was the same as the one I deleted. So that might have helped change things.
    So the summary of what fixed it for me is:
    Latest version of Camino browser.
    Latest version of Flash plug ins.
    Also, after this, I could even use previously unusable services like Rhapsody, with Firefox, a browser that didn't work before.
    So that may indicate that just the new Flash plugins did the trick. But not sure of that for reasons too lengthy to go into now. Try updating both and see. It worked for me, and that's after trying much stuff for a workaround.

  • Is this possible - Import Flash swf which then imports an external swf

    Hi,
    I was wondering if it's possible to (as the title says) to import an swf which itself imports an external swf?
    Explanation - I've got an scrollbar created in flash...and to keep it tidy i've created the scroll 'content' as another swf which is imported into  the scrollbar swf.
    Whenever i publish/render the project the scroll bar appears but the content does not.
    Is it possible to do this?
    Captivate > imports flash > which imports external swf
    Cheers
    Craig.

    Yes that shouldn't be a problem at all. You probably won't be able to see it working when you preview the project from within Captivate but if you publish it and manually copy/paste the external swf to the publish directory, it should work just fine.
    www.cpguru.com - Adobe Captivate Widgets, Tutorials, Tips and Tricks and much more..

  • Flash player opening in new window even for flash in websites

    Ok, so ive searched the net and not found a single person with my problem, if its something easy ive missed im sorry. Flash player opens in a new window for every bit of flash. Like if I go to hulu and start to watch a movie it will not load in browser but open a new window on the desktop and begin playing. If I go to a website that has a flash based set up like the air forces website just the backround will load and the flash thats supposed to be on the page tries to load in a new window like hulu but since its not a movie it doesnt work. It does this for everything flash, meaning if I go to a flash heavy website I see only the html parts and end up with tons of blank flash windows in my task bar I cant bring up. Im running firefox but it does it for ie too so I dont think its a browser issue.

    That resolved the issue. Thank you so much.

  • Slowing down an imported Flash file

    Hi,
    Using Insert - Animation, I've imported a file with an .swf extension. My only problem is that it is playing too fast in my Captivate movie. Outside of Captivate, it plays slower.
    What options do I need to tweak in order to change its playing speed?
    Thanks very much in advance.

    Hello, this is indeed the cause for the speed of the imported Flash. I do not think you can change this in Captivate. If it was produced in Flash, you have to change it in Flash itself. I do not believe you want the speed of the CP changed from 30fps to 380fps.
    Lilybiri

  • Prevent show 'select download folder' dialog when click export csv button in a flash-based website

    I want to download csv file from a flash-based website. When i click the button with export icon, Firefox always pop up dialog box with title 'select download folder for ...'. I have set up default download folder and uncheck 'always ask me where to save files'. If i download from other websites (not a flash one) then the download automatically started without pop up folder selection dialog. I want to prevent firefox from showing download folder selection dialog because i need to use it for web automation. by the way, i use ubuntu 12.04 with firefox 21.0. I have used flashgot extension but still no luck. Any suggestion about this?

    I already have followed the instruction above, but still no luck. The dialog still appear. I think this is not a regular download link since it's made with flash. It's look like an export button which will force browser to pop up 'select folder location' dialog and when i click save then there is no download progress like usual, the file just saved automatically. I think the file itself is rendered when the flash website loaded, and then embeded into the web page. When i download, it didn't send any request, it just get the embeded file.

  • Import flash file into application

    Hi,
    Can anyone tell me how to import flash file (macromedia flash) into an application?Thanks for any help.

    Unfortunately, your out of luck.
    Fw, and other applications, for that matter, does not handle .fla/.swf files in that manner.
    As your search yielded, Flash is better suited to handle native Fw files/artwork as library assets.
    h

  • Importing Flash into PowerPoint

    Hello - I have a Flash file that I would like to import into PowerPoint.  Below are my questions.  I am hoping to get some guidance on this.
    First a few pieces of information:
    1.  I use a Mac but have a Parallel system at work so I have access to Windows PPT 2008.  I am using Flash CS5.
    2.  The Flash file is not huge, it's just these animated curtains that open up to reveal a logo and text.
    Questions:
    1.  I have found the only way to import the Flash file is to export as a .mov and then import that into PPT.  This works great EXCEPT for that the text and logo look blurry in PPT.  I have no idea why.
    2.  Is it possible to export a .mov file with just the curtain animation but with a transparent background so that when I import into PPT, we can just type the text directly within PPT and not have to include that in the Flash file?
    3.  I read online that you can import SWFs into Windows PPT but I have not been able to get that to work either.
    Thanks in advance for any and all information!! 

    Dear MedicalDoctorWebPixie:
    This is the product you're looking for for importing Flash (both interactive or non-interactive) content into PowerPoint:
    http://www.adobe.com/products/presenter/

  • Importing flash video shifts cells

    When I import flash video to my pages that were cut in
    photoshop, the cells shift around.
    Does anyone know what the problem might be?

    To expand a little on what Walt says, this symptom is the
    "Poster Child" (so
    to speak) for why one should not use graphics programs to
    write HTML.
    Applications like Photoshop and Fireworks are marketed
    partially on the
    basis that they can build your page for you, and this is
    true, but what they
    do not tell you is that the resulting pages are suitable ONLY
    for
    prototyping, and NOT for production-grade web pages. The
    layouts that are
    built are monolithic and 'brittle' meaning that as soon as
    the "shape" of
    the contents on the page change away from what was on the
    canvas in the
    graphics application when you exported the HTML, the layout
    shifts and
    'breaks'. They do their job well, these graphics apps, but
    only if you
    understand where and when to use them....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:g8v1vc$t2q$[email protected]..
    >>>Does anyone know what the problem might be?
    >
    > Yes, creating pages in Photoshop or any graphics editor.
    Create your
    > images there and all your HTML in DW.
    > --
    >
    > Walt
    >
    >
    > "shawn3d70" <[email protected]> wrote
    in message
    > news:g8v1od$sm3$[email protected]..
    >> When I import flash video to my pages that were cut
    in photoshop, the
    >> cells shift around. Does anyone know what
    >> the problem might be?
    >
    >

  • Importing flash to iweb

    hi i have tried importing flash into iweb and it doesn't like the file. It is saved a a SWF is there any way of importing it. It is just opening a video box and when i click play it is blank.

    Hi Roddy
    Thanks for your reply. The controller value is already 'false'. It is done in Web Widgets HTML Snippets Below are my codes:
    +<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="270" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab #version=8,0,0,0">+
    +<param name="src" value="http://www.montagecreation.com/MovieFiles/anpplayer.swf?file=Photomontag e-SamSok_Phuket.flv&amp;autostart=true" />+
    +<param name="autoplay" value="true" />+
    +<param name="loop" value="false" />+
    +<param name="controller" value="false" />+
    +<param name="kioskmode" value="false" />+
    +<param name="cache" value="true" />+
    +<param name="scale" value="tofit" />+
    +<param name="allowfullscreen" value="false" />+
    +<param name="menu" value="false" />+
    +<object type="application/x-shockwave-flash" data="http://www.montagecreation.com/MovieFiles/anpplayer.swf?file=Photomontage -SamSok_Phuket.flv&amp;autostart=true" width="480" height="270">+
    +<param name="autoplay" value="true" />+
    +<param name="loop" value="false" />+
    +<param name="controller" value="false" />+
    +<param name="kioskmode" value="false" />+
    +<param name="cache" value="true" />+
    +<param name="scale" value="tofit" />+
    +<param name="allowfullscreen" value="false" />+
    +<param name="menu" value="false" />+
    </object>
    </object>
    Jojos

Maybe you are looking for

  • Elgato EyeTV Hybrid tips & tricks

    I didnt know where else to put this so im posting this here. I'm looking for any tips & tricks or whatever you want to call it with the Elgato EyeTV Hybrid for Mac. Reason this being is because im using an Xbox 360 with this and i feel my experience

  • "For Period" HR ABAP

    Hello Friends I want that my program of Pensions should always capture data for "For Period", I am using PNP database. Please guide Thanks Bhavna

  • Programmatically change tab page label font size

    Hellow Fellow LabVIEW Lovers, I thought this subject was easy with LV2009, somehow I cannot find the property for the "tab page label font size", yes, i also looked with the "pages" ref array from the tab ref, also no luck. Could someone point me to

  • How to print Neat mode and Quick  & Draft Mode.

    Hi, How we can Print Neat Mode and Quick & Draft Mode. We are Using OKI DATA Micro LIne Dot Matrix Printers SAp B1 43 2005 B. Wethere we need to Install Drivers for Draft Mode. Please give me your Advise. if set Draft mode in Printers it automaticall

  • Navigating around code using arrow keys in OSX

    Hi, When navigating around Flash Builder using alt-left/right in OSX, the cursor always skips past underscores, periods and colons, rather than recognising them as word breaks. For example: protected var _myVar:Boolean; placing the cursor at the end