SWF integration into Safari

Hello All,
I have a problem with the way my page is displayed in Safari:
I have a few DIVs, some overlapping others.
One of these DIV is in the background (lowest Z-index) and contains an SWF. (a kind of liquid picture/video in Flash)
My problem is :
In all common browsers it's fine, the website is displayed correctly, with DIVs overlapping or being overlapped according to their Z-Index.
Though, in Safari, the DIV containing the SWF always show on the foreground and hide all other DIVs, whatever the Z-index attributed to all the DIVs.
Would you have an idea how to fix this ?
Many Thanks
Mike

Hi Ned,
Thanks for the reply.
Though I have tried this already, my code is already showing :
<param name="wmode" value="transparent" />
I changed from "opaque" in the past but cannot see any difference ...
I was wondering if I should use that famous library that takes care of integrating SWF properly (no longer remember the name of that library)
Could this also be related to the containing div being positionned as "absolute" with width=100% and height=100% ?
I use absolute but I may use "static" and "float" instead maybe. (I have never been able to spot the difference between "absolute" and "float")

Similar Messages

  • How to install realplayer plug-in into safari,

    Hi,
    i'm using safari for window (WinXP),
    as at IE i could use video download from real-player but can't at safari,
    how can i install real player plug-in into safari?
    so safari also can having the same option for video download

    Your Macbook runs Mac OSX, while your iPad runs iOS. These are two completely different operating systems, meaning that just because you can do something in one it doesn't necessarily follow that you can do the same in the other (you wouldn't, for example, try to open an app on your Macbook by touching it would you? )
    You can install small Java scripts in the form of bookmarklets (services such as instapaper take advantage of this to provide some sort of integration with mobile Safari), but Java plugins cannot be installed. As for the future, who can say? But I wouldn't hold my breath if I were you...

  • Actionscript / swf integration with Adobe Presenter

    I need to do some Actionscript / swf integration with Adobe Presenter content.
    Is there any way to access information about current slide nr., total number of slides and "end of presentation" information from swf(Actionscript 3.0) inserted into Adobe Presenter?
    I am using Adobe Presenter 8 with Adobe Connect 8.

    First, the best place is probably the Presenter forum, which somewhat curiously is under the Connect umbrella:
    http://forums.adobe.com/community/connectpro/connectpro_presenter
    Out of curiousity, why are you using AICC? Because the content is on a different domain?
    To the point, it's great to have a logging or debugging tool for these sort of things to view the communication between the LMS and the lesson. Perhaps the lesson is sending the 'completed' status but also sending some other value that the LMS is using to change the status back to incomplete?
    My first suggestion would be to try the lesson in a tool like TestTrack...but I don't think that handles AICC. Does the Saba LMS have any kind of debugger or logging tool you can use? You really need to see if the lesson is sending the status back to the LMS as you suspect it should. If it IS, then the issue lies with the LMS and how it's interpreting that result. If it's NOT, then you can then perhaps figure out what to adjust in the lesson.
    In general, just play with the settings. If it's set to Complete/Incomplete and has a Mastery Score, try NOT setting the Mastery Score... And other such combinations.
    I hope the folks in the Connect/Presenter forum can provide more insight.
    Erik

  • I can't get into safari!! When ever I try to go into safari, it's a blank screen

    I can't get into safari!! When ever I try to go into safari, it's a blank screen and then it goes back into the homepage

    Sorry you did not get an answer to this,but I do note you are apparently now using firefox 10.0.2.
    One reason for the rapid release cycle that Firefox has now adopted is to keep firefox secure and up to date. You may even find Firefox itself offers some of the facilities that the troublesome AVG offers. And MS offer free AV with MS security essentials.
    AVG often seems to cause problems with firefox.

  • Safari problem:  when I switch back into safari from another application, the menu bar comes up but no tabs or windows.  What's going on?  Just started yesterday.  I have found a workaround: when I Command Tab back to safari, I hit command T to open a new

    Safari problem:  when I switch back into safari from another application, the menu bar comes up but no tabs or windows.  What's going on?  Just started yesterday.  I have found a workaround: when I Command Tab back to safari, I hit command T to open a new tab and Command W to close it, and my other tabs are visible.
    I have tried shutting down, closing tabs, with no success.  What's going on and how can I fix it?
    Thanks,
    Cindi B
    PS:  I'm not sure of the actual OS level, but I have not allowed it to upgrade to Maverick yet; concerned about it because of a few things I've read...

    A Safari extension or third party plugin may be causing the menu bar issue.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test. If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.
    As for which OS X is installed.
    Click the Apple () menu top left in your screen. From the drop down menu click About This Mac.
    The version is noted there.
    v10.6 Snow Leopard v10.7 Lion  v10.8 Mountain Lion
    It's your choice whether or not to upgrade to Mavericks. If you decide to do this, make sure your Mac meets the requirements noted here.

  • Reports that it is absent plagin and there is no sound into safari when you open site.

    Reports that it is absent plagin and there is no sound into safari when you open site.

    And what site would that be?

  • Can I combine two methods of code to load various SWF files into the same location

    I presently have a set up where a large SWF file brought on the stage by clicking small icons from the scrollable thumbnail menu on the bottom of the stage. All of it happens at the same frame with .xml loading file.
    Here is the code for constructing the ImageLoader(for thumbnails) and SWFLoader for (bigger SWF files)
    [CODE]
       function _xmlCompleteHandler(event:LoaderEvent):void {
       _slides = [];
       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.
       var imageList:XMLList = xml.image; //In the XML, we have <image /> nodes with all the info we need.
       //loop through each <image /> node and create a Slide object for each.
       for each (var image:XML in imageList) {
        _slides.push( new Slide(image.@name,
              image.@description,
              new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",
                   name:image.@name + "Thumb",
                   width:_THUMB_WIDTH,
                   height:_THUMB_HEIGHT,
                   //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                   //x:260, y:320,//doesn't work here but works in line 69
                   scaleMode:"proportionalInside",
                   bgColor:0x000000,
                   estimatedBytes:13000,
                   onFail:_imageFailHandler}),
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
                    name:image.@name + "Image",
                    width:_IMAGE_WIDTH,
                    height:_IMAGE_HEIGHT,
                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates
                    x:0, y:144,
                    scaleMode:"proportionalInside",
                    bgColor:0x000000,
                    estimatedBytes:820000,
                    onFail:_imageFailHandler})
    [/CODE]
    Here is what I would like to resolve. I have another section on the site with an image collage. Every image is a button. I want to script this each image on click to go to the label with ImageLoader and SWFLoader AND TO OPEN A UNIQUE SWF (ASSOCIATED WITH AN IMAGE CLICKED) ON THAT PAGE
    Previously this is what I did to achieve it. I would specify a String:
    [CODE]
    var sourceVar_ProductsPopUps:String;
    [/CODE]
    and then all my buttons will have their unique SWF assigned for them which opens at another labeled section ("prdctsPopUps" in this example):
    [CODE]
    function onClickSumix1PopUp(event:MouseEvent):void {
      sourceVar_ProductsPopUps="prdcts_popups/sumix1-popup_tl.swf";
      gotoAndPlay("prdctsPopUps");
    [/CODE]
    Then in the "prdctsPopUps" section I would specify that var string to bring up SWF files. The value of sourceVar_ProductsPopUps allows to load mulitple SWFs from the previous page.
    [CODE]
    loaderProductPopUps = new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]
    But I need both of them to be working at the same time. First there is a sectionA from where a user can navigate to specifically targeted SWF to section B's SWFLoader. Then in the section B a user has an option to bring up other SWF files into SWFLoader from the scrollable thumbs menu. Is there a way to combine these two lines into one:
    [CODE]
              new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",
    [/CODE]
    and
    [CODE]
    new SWFLoader(sourceVar_ProductsPopUps,
    [/CODE]

    Thanks for looking into my issue.
    Unfortunatelly I am not so advanced in AS and do not complitely understand the logic of the problem. I will try to decribe my set up more precise.
    So, my main flash file is broken into labeled sections on the main time line.
    One of the sections is "Applications" It has an animated collage of images. Each image acts as a button and once clicked brings a user to a section called "ApplicationsPopUps".
    "ApplicationsPopUps" section has small image thumbnails scroll menu at the bottom of the screen and a large SWFLoader in the middle of the screen. User can click on an image in the thumbnails scroll menu and a corresponding SWF file will load in the middle of the screen in SWFLoader. User can click on left/right navigation buttons and preceeding/following SWF file will load in SWFLoader.
    Everything works fine (with your previous help)
    Here is the working code for the ImageLoader and SWFLoader (please let me know if you need additional code on the page):
    function _xmlCompleteHandler(event:LoaderEvent):void {        _slides = [];       var xml:XML = event.target.content; //the XMLLoader's "content" is the XML that was loaded.        var imageList:XMLList = xml.image; //In the XML, we have  nodes with all the info we need.        //loop through each  node and create a Slide object for each.       for each (var image:XML in imageList) {         _slides.push( new Slide(image.@name,               image.@description,               new ImageLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/thumbnails/appThmb_imgs/" + image.@name + ".jpg",               {                    name:image.@name + "Thumb",                    width:_THUMB_WIDTH,                    height:_THUMB_HEIGHT,                    //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                    //x:260, y:320,//doesn't work here but works in line 69                   scaleMode:"proportionalInside",                    bgColor:0x000000,                    estimatedBytes:13000,                    onFail:_imageFailHandler}),                 new SWFLoader("loadingAssets/appThumbnails/slideshow_image scroller greenSock_mine/assets/images/" + image.@name + ".swf",                   {                     name:image.@name + "Image",                     width:_IMAGE_WIDTH,                     height:_IMAGE_HEIGHT,                     //centerRegistration:true,//messes up the code as places SWFLoader in the upper left corner which is 0,0 coordinates                   x:0, y:144,                     scaleMode:"proportionalInside",                     bgColor:0x000000,                     estimatedBytes:820000,                     onFail:_imageFailHandler}) 
    Thumbnails in the section "ApplicationsPopUps" and images in the image collage in the section "Applications" represent the same photographs. So when a user clicks on one of the images in "Applications" section it would be natural that that image will load in the "ApplicationsPopUps" section. However "ApplicationsPopUps" section presently has a working code (as sampled above) It looks too complex for me and I do not know hot to implement this feature. I do want to keep the functionality of the thumbs image scroller in section "ApplicationsPopUps" as it is now. But I want to add that when a user click on an image from section"Applications" then that particular SWF file will load in SWFLoader in section "ApplicationsPopUps" and then the present functionality can as well be exectuted. Presently it just opens on a first image in xml order.
    P.S. I see that you had a download link in your answer. How did you do it? I could also upload a small sample file with my problem. This way you could see all the set up right away.

  • How can I import my IE8 bookmarks/favorites into Safari if I only have access to the data stored on my old hard drive? I can't run Windows to export them to an html file.

    My old PC died and I replaced it with a MacBook Pro.  Although I was able to copy the data from the PC's hard drive, I am unable to export my previous bookmarks/favorites to an html file because that PC won't boot.  Is there any other way to import them into Safari using the raw data stored on that drive or convert them somehow to a format I can import?

    You can only use a JSON backup to restore all bookmarks in Firefox.<br />
    If you need to import Firefox bookmarks in Safari then you need to (re)install Firefox and export the bookmarks to an HTML file.
    *http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • Embedding SWF file into an Indesign document and later export as PDF

    Hi to everybody,
    I am searching now since 3 days for good solution of my problem. First I wanna tell you that the problem is not just to convert a swf-file into a pdf.  I did this many times with all animations, page flip and stuff.My situation is the following:
    I have varios catalogues with  more or less 12 pages each in an indesign format. Now I created an animated scroll down menu, which appears on an "index-page". On the menu I created buttons. One button for each catalogue. So the idea of the whole thing is to open a document and an index page appears where you have the animated menu and you choose the catalogue you wanna see. Until here it is quite easy. I created a swf file of each catalogue with my animations (as the special page turnover e.g.). So that I just need von Object in with I can load the different swf-files of these catalogues. I already did the process. I linked the buttons to the different swf files and so. So the problem is now when it comes to convert the whole thing into a PDF. Of course I convert it first to swf and then to PDF. After converting it to swf it works 100% fine, but in PDF not, suddenly the swf-files of the catalogues disappear.
    So the summary is, that I don't know how to embed swf files into an indesign document, creat buttons and interactions next to swf file, then save it to another swf, and then to a pdf without losing the first swf files within the pdf.
    Hope I made my self clear would be too nice if someone could help me or if someone may have a better idea of realizing the whole project.

    Jeffrey,
    Thank you for the answer. As you have written:
    I will also add that the ID's play mode contol [plays once] [repeat play] does not always control the file once in Acrobat.
    I presume you mean version of ID older than CS4 or version of Acrobat Reader older than 9.1
    It that is the case I will strongly recommend my visitors to upgrade to this version.
    I hope that would work.
    Thanks again.
    Peter

  • I can no longer open links from my email account into safari, how can I fix this?

    I can no longer open links from my email account into safari, on my iphone 4.

    Have you tried restarting or resetting your iPhone?
    Restart: Press On/Off button until the Slide to Power Off slider appears, select Slide to Power Off and, after It shuts down, press the On/Off button until the Apple logo appears.
    Reset: Press the Home and On/Off buttons at the same time and hold them until the Apple logo appears (about 10-15 seconds).
    No data will be lost.

  • My iPad won't recognise my air printer, it is connected as I checked by typing in IP address into Safari, but when I try to print it just says cannot find any air printers.

    my Ipad won't recognise my printer. It is connected as I have typed the IP address into Safari which confirms connectivity. Spoken with canon who suggest it it is a problem with IOS not recognising the functionality. When I try to print it says cannot find any air printers. Printer is working via LAN set up on my laptop. Don't want to have to spend £25 to speak to an apple support team. Has anyone else experienced this problem. Printer is a canon MG 3250.

    A few things you could try:
    Reboot your modem/router.
    Turn your printer off then on again & make sure it's connected to the network.
    Reboot your iPad holding down the home & sleep/wake buttons simultaneously until the apple logo appears then release & let the iPad boot up normally.
    Try going into Settings on your iPad & select General->Reset->Reset Network Settings.
    Also, have a look at this:
    http://www.canon.ca/support_images/KB_Images/Shared_wifi_documents/How_to_Print_ Using_Apple_AirPrint_NEW.pdf

  • Set type problem in sales order integrated into loyalty management

    Hi experts,
    I try to implement the sales order integrated into loyalty management. As notes said, I should use the set type REWARD_PRO_LOY to assign to a hierarchy for loyalty. But when I use this set type in hierarchy, I found I can only assign it when I choose "service" for product type. Then I find in the "REWARD_PRO_LOY" set type, there is a switch tab. In the tab, there is only "services". I don't understand this tab means. I want to assign this set type to "materials" type. I tried to created a new set type with the same attributes, but it seemed not to work. Is anybody can give me some advice to solve the problem?
    Thanks a lot,
    Best Regards,
    Molly Xin

    Hi Molly Xin,
    If you refer to your first screen print, its very evident that the product types with which products be created using this set type includes both "Materials" and Services".
    We have created similar scenario and were able to create products with product type "Materials".
    Pease let me know if you have any issues while creating products with product type "Materials".
    Regards

  • I can't seem to get rid of OR use Adobe Reader after I let it into Safari 7.  How do I get to the point where Reader is not my preferred anything, but can still be used if Preview won't open something?

    I can't seem to get rid of OR use Adobe Reader after I let it into Safari 7.  How do I get to the point where Reader is not my preferred anything, but can still be used if Preview won't open something?

    Back up all data before making any changes. Please take each of the following steps until the problem is resolved.
    Step 1
    If Adobe Reader or Acrobat is installed, and the problem is just that you can't print or save PDF's displayed in Safari, you may be able to do so by moving the cursor to the the bottom edge of the page, somewhere near the middle. A black toolbar should appear under the cursor. Click the printer or disk icon.
    Step 2
    There should be a setting in its preferences of the Adobe application such as Display PDF in Browser. I don't use those applications myself, so I can't be more precise. Deselect that setting, if it's selected.
    Step 3
    If you get a message such as ""Adobe Reader blocked for this website," then from the Safari menu bar, select
              Safari ▹ Preferences... ▹ Security
    and check the box marked
              Allow Plug-ins
    Then click
              Manage Website Settings...
    and make any required changes to the security settings for the Adobe PDF plugin.
    Step 4
    Triple-click anywhere in the line of text below on this page to select it, the copy the selected text to the Clipboard by pressing the key combination command-C:
    /Library/Internet Plug-ins
    In the Finder, select
              Go ▹ Go to Folder
    from the menu bar, or press the key combination shift-command-G. Paste into the text box that opens by pressing command-V, then press return.
    From the folder that opens, move to the Trash any items that have "Adobe" or “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari.
    Step 5
    The "Silverlight" web plugin distributed by Microsoft can interfere with PDF display in Safari, so you may need to remove it, if it's present. The same goes for a plugin called "iGetter," and perhaps others—I don't have a complete list. Don't remove Silverlight if you use the "Netflix" video-streaming service.
    Step 6
    Do as in Step 4 with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari.

  • Adobe flash 11 installs but not integrated into ie8

    I have an XP/32 SP3 system using IE8.  I use the latest Avast, and have realplayer 16.  I temporarily disabled all add-ons today, and subsequently I have been unable to re-enable as the entry has disappeared from the list of add-ons.  I have uninstalled and re-installed IE8, ditto with Adobe Flash using the Adobe Flash removal tool, and then re-installed the latest IE version.  I have used the Flash test option and the screen is just greyed out.  So clearly although there are no error diagnostics during the install, the add-on is not being integrated into IE8.  Hence URLs that require flash show an error.
    All M$ updates uptodate.
    What could I try?

    Thanks for your reply - I did delete the flash/macromed directories as suggested by Adobe prior to the last re-insatll.  Here is a screen grab of the flash directory as now.
    Shockwave is not appearing as an add-on in IE8.

  • Concatenate two single frame swf's into one singleframe swf?

    Hi
    Is it possible to combine multiple swf's into one "single frame" swf?
    I have an flex application, that has a scroller with a swfloader inside, and the swfloader should load the "single frame" swf and it is possible to navigate up and down, via the scroller.
    Any help is appreciated.
    /Allan

    I've experienced the same thing sometime long in the past,
    and I probably did a frame by frame Print Screen to get around it.
    If it's single frame swf, then that's probably all you're going to
    get is one frame as an output.
    You may be able to incorporate a jpeg encoder of some sort to
    take snapshots as the piece animates in some form of loop fashion,
    but I'm not savvy in that dept.

Maybe you are looking for

  • How to calculate total in multi-row block

    How can I calculate and display the total amount in a multi-row block that records are not yet save into database? null

  • Aliasing When Burning 16:9 DVDs

    for weeks, i've been trying to improve my HD to SD conversion. the MPEG2 always looked great on my computer monitor, but i saw aliasing and jaggies on my television when i watched the DVD. i now think i've discovered that my downconversion is fine, b

  • Setup of Standby on Maxdb

    Dear All, I have to setup DR site using maxdb on Redhat Linux 5.4. On Primary  Server  and and Standby  Server Please advice     Hostname Should be same. Steps i will follow to setup DR site. 1.Backup copy from Production  server will be restore on T

  • Why wont the share to youtube videos work on other ipad or iphones

    many of my projects that i share to youtube are not playable on other ipads or iphones, i thought they used to play fine, but recently none of my movies work on youtube...

  • Exporting for web question

    OK, I'm sorry to ask  this one; I'm sure it's been asked hundreds of times. How do I add my own personal watermark to my images upon export?  I have the .png file.  I just need to apply it to the bottom right corner so it will show up when I post it