Alternative image to flash file

hello
how do i add a alternative gif or jpeg image if the flash
file won't load in a browser. for example when i view my site on an
iphone the flash file doesn't display so i would like a static
image in it's place.
any help much appreciated.... P

Hello,
Check out these two links:
http://www.alistapart.com/articles/flashembedcagematch/
http://code.google.com/p/swfobject/
Start with the documentation link at the top.
Hope that helps.
Take care,
Tim
"pgc1" <[email protected]> wrote in message
news:g8kt15$gqu$[email protected]..
> hello
>
> how do i add a alternative gif or jpeg image if the
flash file won't load
> in a
> browser. for example when i view my site on an iphone
the flash file
> doesn't
> display so i would like a static image in it's place.
>
> any help much appreciated.... P
>

Similar Messages

  • How to upload a image or flash file as blob object in a table.

    How to upload a image or flash file as blob object in a table.
    What are all the possible ways we can do it.

    Searching the forum (or google) would be my first choice, as this question pops up every now and then.
    Next without knowledge of your environment (jdev version and technology stack) it's hard to give a profound answer.
    All I can say is that it's possible.
    Timo

  • How To Provide Alternative Image If Flash Player Not Available

    I`m designing a site with an interactive header created in Flash.  Does anyone know how to display an alternative image (a .png) in it`s place if a user doesn`t have the Flash Player?  Of course, this is especially important for visitors using iPhones!  The site logo is part of the Flash movie, which makes it all the more important that something is displayed in the movie`s place.
    I`ve heard their are ways of doing it with Javascript, but is this really necessary?  There must be an easy solution!
    Thanks for any help/suggestions anyone can give!
    Matt

    Here are some of the links to scripts that help u in decting Flashplayer,if not found based on the script reply u can display a image.
    http://www.adobe.com/products/flashplayer/download/detection_kit/
    http://www.kirupa.com/developer/mx/detection.htm

  • Modify Images in Flash File

    Hello,
    I bought a flash file off of istockphoto.com for the
    navigation of my website. When you hover over a button it changes
    the image. The images in the original file didn't go across the
    screen, and I was able to change that in flash, but now it
    stretches the image out (distorts). I created new images that were
    the same dimension as the stage they would appear, but it still
    distorts the image. Can someone please tell me what I need to do to
    adjust it?
    Here's what the original looks like - and the modified:
    www.blueprintimc.com/original.swf
    www.blueprintimc.com/modified.swf
    and here are the original and modified files:
    www.blueprintimc.com/original.fla
    www.blueprintimc.com/modified.fla
    Thank you! [email protected]

    Hi,
    This is a known bug in CP3. Click here to see the solution for this.
    this has been fixed in Captivate 4.
    Manoj

  • Problem with corrupted images in flash file

    Hey people, i've been searching around and this is the best place I could find to post th
    is.
    I was wondering if there was anyone out there who could help me with some corrupted files.
    Apparently its a random error where when saving some images may not save properly, I originally saved the file in CS3 and am now working on it where I only have CS4 and 5 available to me.
    The file can open in CS5 but not CS4 for some reason however there are certain scenes containing certain symbols which obviously haven't saved properly and so are missing and "corrupted"
    I also copied the original SWFs from testing and the symbols which are corrupted just show up as red shapes in those as well.
    I am unable to save the file due to these symbols causing it to crash when saving in any available formats and unable to delete the corrupted files as when I attempt to access them flash crashes as well
    I was wondering if there's anyone who would be able to access the file or even anyone willing to attempt to solve the problem as I am on a deadline of a week after christmas and am worried I may not be able to complete it by then with these problems.
    Thanks for any help you can give me.
    (Also I have no idea how to attach the files if anyone can tell me how it would be great or I could upload them elsewhere and post a link)

    Create a URLRequest object with the URL of your image. Pipe
    that URLRequest into a new Loader Object. When the Loader Object
    finished loading (add an Event.COMPLETE-Listener to the loader for
    that), you are free to do whatever you want with that Loader. Maybe
    you'll want to draw it in a BitmapData-Object and then go
    on.

  • Ad rotator - add supporting gif for flash file

    Hi there, I am using the ad rotator to host 3rd party advertising. I have been supplied with a flash file (swf) and also a gif version of the ad. I want to be able to point to the gif file if the swf file is not able to be played by the browser/device. Is this possible within the ad rotator to have a fall-back gif file?
    thanks

    This functionality isn't native to BC but I've done this before for a client.  Just beware that using an .swf (flash) file embed for the ad won't let you track the BC Ad Rotator links.  Typical, image-only ads in the AdRotator can be tracked in BC's reporting but using a .swf file doesn't work and you have to embed the link in the actual .swf file itself.  Before we get you working with a flash fallback solution, if you have access to the .swf file or can tell your client what URL to use in the flash ad then you should use the AdRotator trackign URL if you can.  Do do that, setup an image-only ad rotator item first in one of your ad rotators.  Add that rotator to a demo page to get the URL of the ad rotator (it contains the unique id of your ad for tracking). Once you have that URL you can update your flash file to use that URL to take advantage of tracking on BC or give it to your customer to update the flash file themselves before sending you the flash file.
    Once you've taken care of the link in the flash ad or if you don't care about not tracking flash ad clicks in BC's reporting system, let's move on to building a flash fallback ad solution. We'll be using SWFObject which is the correct way to embed flash with fallback content.  The hardest part of this whole scenario is we have to get the ID of the ad rotator item (not the ad rotator ID) below.
    The javascript I came up with requires jQuery and it's usually already loaded on many sites. Make sure jQuery is loaded in the HEAD of your page or page template where you'll be serving the ads in the ad rotator.
    Download the SWFObject project and unzip it locally.
    Upload the whole "swfobject" folder to the root of your website.
    In your page template or page that you will be serving your ads on, add this script reference to the HEAD of your HTML doc:<script src="/swfobject/swfobject.js"></script>
    Download my custom javascript function and upload it somewhere on your website. For this example we'll assume you are placing it in the "js" folder in the root of your site.
    In your page or page template where you'll be serving ads, reference the script you just downloaded. Make sure it goes after our swfobject.js and jquery references in the head of your HTML doc:<script src="/js/adRotatorFlashFallback.js"></script>
    Now that our jQuery, SWFObject & adRotatorFlashFallback scripts are in place in the HEAD of our page or page template, let's move on to creating your ads with fallback content
    Upload the backup image you want to use for non-flash devices to your website and remember the URL/path of that image. For our example we'll use "/images/demoad.gif".
    Upload your .swf file to your site and rember the URL/path to that file. We'll need it later.
    Once the image and flash file are uploaded we'll create our ad rotator item for that ad:
    Create a new ad rotator item
    Choose the Item Type as HTML
    Add your Label (title) and Item Click-thru URL
    In the Item HTML box manually insert your HTML markup for the image:
    <img src="/images/demoad.gif" width="125" height="125" />
    (I won't be covering styling the ad so you can wrap a div around that image if you want to use some CSS to target the ad:(Optional) <div class="ad-item"><img src="/images/demoad.gif" width="125" height="125" /></div>
    Save the ad first before we add the flash option. We need to get that ad rotator item's ID first before we can hookup javascript to embed the flash over the backup image. If you have many ad rotator items already in place you might want to temporarily disable all the ads already setup except the one you are working on so you don't have to refresh the page a bunch of times to wait for your ad to randomly appear.
    Goto a test page and use BC's module manager to insert your AdRotator.
    Preview your test page with your ad rotator and once you see your ad you are creating, right-click the ad (this works in Chrome for sure) to copy the URL of the ad. You can also see what the URL is just by hovering over the ad in most browers.  The goal here is to jot down or grab the ID of the web app item and that should be in the URL similar to this: "/BannerProcess.aspx?ID=32713&URL=%2ftest".  I bolded the ID we'll be grabbing. This ID is unique to each ad rotator item and we need that so that we can embed a specific flash file for that specific ad rotator item. 
    Once you've got your ID of the item, head back to the Ad Rotator Item you just created in the BC Admin.
    You'll want to add some javascript after your image markup in the "Item HTML" box
    Before we had: <img src="/images/demoad.gif" width="125" height="125" />
    and it becomes:<img src="/images/demoad.gif" width="125" height="125" />
    <script>adRotatorFlashFallback('32711','/demoad.swf', '125', '125');</script>
    Replace the bolded items above with the ID of your ad rotator item we pulled from the URL before and the URL to the flash file we uploaded to the site before.  In our case, I uploaded "demoad.swf" to the root of the website. Also, the '125' and '125' above are the width and height, respectively for your flash file. For instance if your flash movie is 300 pixels wide and 100 pixels in height then calling our functions with those dimensions would look like:<script>adRotatorFlashFallback('32711','/demoad.swf', '300', '100');</script>
    Make sure the ad rotator item is enabled and you're all set.
    You can see a demo of it working at http://www.chrismatthias.com/demos/swf-fallback-ad-rotator
    After your initial setup of downloading the javascripts and referencing them in your page or template, the hardest thing about creating new ad rotator items with fallback is getting the ID of the ad rotator item from the URL in steps 12-14, but it's the only way I know of to get the ID of the ad rotator item. I can't find it in the BC Admin anywhere.

  • Error while using Image component to display a child flash file

    Hi
    I'm using Xcelsius version 4.5. I used the "Image Component" to import a child flash file(.swf) into the parent flash file.
    I gave the path "D:\246024\Loblaw\Dashboard Docs\New Folder\trend input.swf" in the general tab of the image component.
    After exporting the .xlf into a flash file , it works fine in the system in which i created it. If i open the same flash file in any other system the parent file opens but the child flash file imported through the image component is not displayed.
    Please help me out in solving this issue
    Thanks
    Anitha

    yes, you will face the same problem as its still looking for the path of the swf.
    you need to have the SWF on specific location which is accessable by the Parent SWF
    usually web page or something which is accessable for all.
    good luck

  • Flash files as images in XML Forms

    Hi Crew,
    Anyone had to use flash files in XML forms Based Publishing?
    Have created a simple XML Project asking the user to select two images, and these are then displayed in an iView.
    gifs & jpegs display no problemo.   swf (flash files) do not.
    Any ideas?
    Paul

    Hi Paul,
    I need to display a .swf file in a XML form. I read the solution that you have posted about modifying the XSL file, but i have no clue how to go ahead with this.
    Could you kindly provide any document, link or the solution as to how to modify the XSL file ?
    Any kind of help would be truly appreciated.

  • When I start MacBook Pro13 shows gray Screen and flashing file Image with question mark

    When I start MacBook Pro13 shows gray Screen and flashing file Image with question mark , it's brand new I just receive it from Apple Store .

    Startup Manager to select Startup disk.
    http://support.apple.com/kb/HT1310
    Repair Disk
    Steps 2 through 8
    http://support.apple.com/kb/PH5836

  • Placing an image on top of a flash file

    Is there a way to keep a image on top of a flash file? When I
    place it on top then publish the flash file jumps in front of the
    pic when it plays.
    What I am trying to do is place a border around the window. I
    can't just shrink the flash file down because this great program
    causes errors with the flash content.

    There is no way to keep an image on top of a Flash file.
    Having said that, we do a couple things to get around that:
    1: add the border to the flash file-- when we're creating
    swfs for Breeze in Captivate or Flash itself, we add the highlight
    or border there
    2: Add the border to a file that rests behind the flash file
    and make the flash file fit
    It sounds as if you've tried the second, but with no success.
    I 've never had a problem resizing swfs that I've imported into ppt
    through Breeze Presenter. I sthat the issue you're having?

  • Background image blew my flash file

    Hi Guys,
         hope someone could help me this time, i just have this question about my background image blowing up the size of my swf file. i have a 1000x600 canvas which has the same bg image, and when i publish it, my swf file has a size of 468kb, but when i remove the background image the file was reduced to 57kb.. the image was a png-24 326kb image, and its not the file in my flash that has this file size. just wondering wut happened that it gives that huge adjustment to the file?

    Recommendations:
    1) I believe the setInterval activity is what ends up breaking things.  Get rid of all the setInterval and clearInterval elements.  Just use setTimeout instead, which you won't have to worry about clearing.
    2) The file performance is likely suffering due to the size of the images versus the portions of them that actually get used.  Create/crop the images outside of Flash to the size they will be in the Flash file, optimize them, and then import them.  Also, if you combine all the elements that you animate at once together into one symbol (the text, background, and button), and animate that symbol instead of the different pieces separately, things will probably animate more smoothly as well.

  • Need to add jpg image file to flash file

    Dear All,
    I am new to flash. I have one flash file in which I want to show some images in a slide show way at start of the flash file.
    Please let me know the step by step if possible.
    Thanks

    You're not likely to get a step by step created just for you here, but there are probably plenty of folks that have already done that for you elsewhere.  Try searching Google for "Flash slideshow tutorial" or if you plan to make it actionscript controlled, use "AS# slideshow tutorial" where you substitute 2 or 3 for # depending on which version of actionscript you want to use.
    If your title has any bearing on what you really need to know, then in the File menu select Import, select between the cjoices offered, and select the file from the directory search interface that appears.

  • Optimizing Flash file for Internet

    I have a 10MB flash file that I have uploaded to my website. No idea if this is large or small for a Flash file! The Flash appears on my index.html page.  I have noticed that different browsers react differently, but when I open the page initially the video does not start playing straight away.
    I'm using Dreamweaver. Is there a setting I should set? Any pointers?
    Thanks.

    I think I understand that, but never done it.
    This is my current code:
            <div id="Video1">
                <object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="300">
                    <param name="movie" value="Images/Videos/ExampleWorks2.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" />
                    <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
                    <!--[if !IE]>-->
                    <object type="application/x-shockwave-flash" data="Images/Videos/ExampleWorks2.swf" width="400" height="300">
                        <!--<![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" />
                        <!-- 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/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>
                        </div>
                        <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </div>
    Presumably I have to change these lines:
    1.                 <param name="movie" value="Images/Videos/ExampleWorks2.swf" />
    2.                 <object type="application/x-shockwave-flash" data="Images/Videos/ExampleWorks2.swf" width="400" height="300">
    Rather than having ="Images/Videos/ExampleWorks2.swf" I'm guessing I replace with a url, correct? I'll look for some examples, but if you can offer something in the meantime I'd appreciate it.
    Thanks.

  • Floating frame placing flash file

    Wondering is someone can give me a hand here. I am placing a flash file into an existing page which has CSS. The flash file consistently goes to the upper left corner. The file is p;laced into a table so should stay there but the CSS for some reason takes over. Is there a way to show where it is placed with out disrupting the CSS too much?

    Just in case you see something before I can find the answer here is the method used to place the flash file ...
    <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="512" height="288" id="FLVPlayer">
                           <param name="movie" value="FLVPlayer_Progressive.swf" />
                           <param name="quality" value="high">
                           <param name="wmode" value="opaque">
                           <param name="scale" value="noscale">
                           <param name="salign" value="lt">
                           <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_3&amp;streamName=/support/TV/To yo_Fall2011_EN&amp;autoPlay=true&amp;autoRewind=true" />
                           <param name="swfversion" value="8,0,0,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">
                           <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->
                           <!--[if !IE]>-->
                           <object type="application/x-shockwave-flash" data="FLVPlayer_Progressive.swf" width="512" height="288">
                             <!--<![endif]-->
                             <param name="quality" value="high">
                             <param name="wmode" value="opaque">
                             <param name="scale" value="noscale">
                             <param name="salign" value="lt">
                             <param name="FlashVars" value="&amp;MM_ComponentVersion=1&amp;skinName=Clear_Skin_3&amp;streamName=/support/TV/To yo_Fall2011_EN&amp;autoPlay=true&amp;autoRewind=true" />
                             <param name="swfversion" value="8,0,0,0">
                             <param name="expressinstall" value="/Scripts/expressInstall.swf">
                             <!-- 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/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
                                </div>
                             <!--[if !IE]>-->
                              </object>
                           <!--<![endif]-->
                            </object>

  • Insert animated gif or flash files (.swf) in Form?

    How can i insert animated gif or flash files (.swf) or another type of animated files in Form?

    If you are web deployed you can put an animated gif as the image to an iconic button.
    Image items cannot display animated gifs.
    Anything else you can do through a JavaBean if you need to.

Maybe you are looking for

  • Question about capturing with JVC GY-HD200U

    I am looking at this particular camcorder, JVC GY-HD200U, and was wondering if there is any issues capturing footage into FCP6. Does any one own or worked with the JVC GY-HD200U or early model? share you thoughts about this camcorder if you have work

  • Regarding AIM Documents

    Hi All, I have a doubt regarding AIM Documentation, What are the various AIM documents that a Senoir Functional Consultent needs to be prepare for an implementation project. If it is an implementatin project say example the documetns are like MD 050,

  • Installing http server on windows 7

    Can anyone find a link for me, thanks, Doug

  • Maximum length of table name

    Hi, I am new  to Abap. Can any one tell me what is the maximum laength of a table can be....In help.sap. i found that it is 18 characters... but when i am trying it here it is allowing to give only 16 letters... And the other error i am getting is th

  • Oracle architecture

    Hi I know that Data Structure are two types Physical Structure and Logical Structure But i did not know what is bifferent between two Structure .