Problem getting transparency in Dreamweaver with Flash

I recently upgraded my Dreamweaver to CS4 and it has has changed the code I had for a site I designed. I used to have transparency in my Flash movie so that the browser background could be seen through the movie. I have now lost this. Could someone please help me getting this transparency back as I know very little about Dreamweaver or html for that matter.
The site is at www.tuarard.ie
Any help would be amazing. Please also note I am a total beginner with html.
Thanks,
Peter

Oh sorry, i thought you could view it from the source on the site. Here you go... thanks again!!!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Tuar Ard Arts Centre</title>
<script src="Scripts/swfobject_modified.js" type="text/javascript"></script>
<script language="JavaScript">
function openWin(url, w, h)
var winprop = "width=" + w + ",height=" + h;
openwin = window.open(url,'',winprop);
</script>
<style type="text/css">
<!--
body {
background-color: #000000;
background-image: url(images/browser-background.jpg);
-->
</style>
<meta name="Keywords" content="Arts Centre, Co. Meath, Theatre, Film, Music, Visual Arts, Exhibitions, Art Exhibitions, Plays, Music Gigs, Classes, Children, Dance, Meath, Ireland" />
<meta name="Description" content="Tuar Ard Arts Centre located on the main street in Moate, Co. Westmeath.
It is a multi-disciplinary arts centre which opened in 2000." />
</head>
<body bgcolor="#000000">
<table width="920" height="570" border="0" align="center" cellpadding="80">
  <tr>
    <td><object id="FlashID" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="920" height="570">
      <param name="movie" value="tuar_ard_arts_centre.swf" />
      <param name="quality" value="high" />
      <param name="wmode" value="opaque" />
      <param name="swfversion" value="8.0.35.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="tuar_ard_arts_centre.swf" width="920" height="570">
        <!--<![endif]-->
        <param name="quality" value="high" />
        <param name="wmode" value="opaque" />
        <param name="swfversion" value="8.0.35.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></td>
  </tr>
</table>
<script type="text/javascript">
<!--
swfobject.registerObject("FlashID");
//-->
</script>
</body>
</html>

Similar Messages

  • Can't get Transparent background in Adobe Flash Professional CS4

    I'm wanting to create a moving object that will be exported into a tv commercial.
    Object has already been created in Adobe Illustrator, and now will be dropped into flash for adding movement.
    The destination commercial will be created in Sony Vegas, with the settings of (Australian) PAL television (25 fps, 576x720 pixels, lower field first).
    Thus keeping it simple, I want to set Adobe flash with the same output format, meaning that the canvas will have to be 576x720 pixels at 25 fps.  So far this seems to have worked okay.
    Now I'm wanting to get rid of the canvas colour, just like I have here in this photoshop screen shot.
    Judging by the colour palette in Flash Professional, it looks like it can't be done.  I've checked "transparent palette" through yahoo and google, and had no results.  The adobe documentation only details how to remove a background in Photoshop.
    Can someone please inform me how to get transparent background in Adobe Flash Professional CS4.  Thanks

    As far as I know there is no option to set up a file with a transparent background in design mode.  A transparent background is normally realized in the embedding code of an html web page that displays the Flash file (using wmode="transparent" as a parameter).

  • Just upgraded from a 3gs to a 4s. Now I have problems getting on the internet with the 4s.

    Just upgraded from a 3gs to a 4s and now have problems getting on the internet.

    If your backup is encrypted and you don't know the password anymore, you'll have to start from the beginning and set up the phone without the backup. An encrypted backup can't be used anymore without the correct password.

  • How to get Android IMEI / UDID with Flash CS6?

    Hi. I understand that a Native Extension is needed to get the IMEI or UDID of the Android device. I found one here:
    http://blog.snowflax.com/native-imei-action-script-extension-for-android/
    I ran the compiled sample this site provided and it retrieved my IMEI fine, so I know it works.
    However, the code for this sample is in Flex. When I tried to incorporate it into my Flash CS6 .fla it didn't work. There were no errors, but when I ran in on the Android device nothing happened when I clicked on the button to retrieve the IMEI. I don't know what went wrong. Here is what I did:
    1. First, I imported the "IMEI.ane" file using the steps below:
    http://www.adobe.com/devnet/air/articles/using-ane-in-flash.html
    2. Then in my AIR 3.2 for Android settings I included the "IMEI.ane" file in the publish General settings.
    3. In my program there is a textbox and a button. When the button is clicked with a mouse, it calls the function below and places the returned string in the textbox. I know the string to textbox part works, however, when I call the function below it doesn't.
           import com.chi.imei.Deviceimei;
           import com.chi.imei.DeviceStats;
                  private function mGetImei():String
                         var tImeiStr:String = " ";
                         var obj:DeviceStats = Deviceimei.deviceimei.deviceinfo();
                         tImeiStr = obj.imei.toString();
                         return tImeiStr;
    4. My FlashDevelop intellisense recognizes all the lines above so I think it properly found the classes. However, it doesn't work on the device! Can anyone tell me how to fix this?
    Thank you!

    As usual, this problem which frustrated me for days had a very simple solution. To others who also ran into the same problem, remember to set Android's READ_PHONE_STATE permission to TRUE. And voila! It will work.

  • Dreamweaver with Flash

    I've been designing a website and want the first thing
    someone sees on my site is a flash movie I've made. The flash movie
    starts with the company name and moves objects across the screen
    right to left to reveal the website. I've made it so it removes the
    company name and turns into a white screen. Is there a way to make
    this white layer transparent? Also how do i place this flash movie
    ontop of my dreamweaver site I have built?

    If you must do this, search for wmode.
    Dan Mode
    *THE online Radio*
    http://www.tornadostream.com
    *Must Read*
    http://www.smithmediafusion.com/blog
    *Flash Helps*
    http://www.smithmediafusion.com/blog/?cat=11
    "Waterboy550" <[email protected]> wrote in
    message
    news:e9g9vg$8fb$[email protected]..
    > I've been designing a website and want the first thing
    someone sees on my
    > site
    > is a flash movie I've made. The flash movie starts with
    the company name
    > and
    > moves objects across the screen right to left to reveal
    the website. I've
    > made
    > it so it removes the company name and turns into a white
    screen. Is there
    > a
    > way to make this white layer transparent? Also how do i
    place this flash
    > movie
    > ontop of my dreamweaver site I have built?
    >

  • Problem getting the Table Data with the selection listener

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

    Hi All,
    I am working on a tree and table components. I wrote a logic in the backing bean in such a way that when I expand a node the child nodes for the tree are getting added dynamically and also getting the data in the table for the node expanded in the tree using the same Toplink Query . I added the selection listener for the table and when I am selecting a row in the table I am getting the Null Pointer Exception as the RowKeySet Value for the row selected is coming null.
    Can any one please help me out with this problem
    I will be very thankful
    Regards,
    Madhavi.

  • PROBLEM GETTING PDF INTO DREAMWEAVER

    I tried to place a copy of a PDF in my site Folder using copy and and paste but the paste is field protected.
    I made sure pdf title was in all lower case. What am I doing wrong that I can n
    ot use copy and paste? 
    Any other suggestions as to how I can get pdf file into dreamweaver site folder?
    Ok. Please excuse my format and lack of info until I get comfortable with this site and please don't hesitate to tell me what I am doing wrong on this site - in a nice way I hope.

    HTML is a web document.  PDF is a print document and must be treated as a separate media file.  The best you can do is provide a direct link to the PDF file on your server. 
    If the end user has Acrobat Pro or Acrobat Reader and the necessary browser plug-ins, they can usually click the link and the PDF file will launch in their browser.  If not, they won't see anything unless they download the file and open Acrobat or some other PDF application.
    Nancy O.

  • Problem getting connection to work with WRT54G and iPod Touch 4G

    Hi, I just recently received a brand new iPod Touch 4G and I seem to be having connection troubles with it.  This has also happened on my previous iPod (an iPod Touch 1G).  This router has a pretty old firmware from like 2006.  The problem is not that I can connect to the router and get the ipod to show the checkmark, but it is that I cannot get any network connection through the router.  I have a Windows 7 laptop that connects perfectly fine using the router.  Also, I believe my Nintendo DS Lite can connect flawlessly as well.  I noticed that there seems to be a bit of trouble with Apple products connecting to Linksys routers in general.  Does anyone know what may be causing my connection issues?  When I got my iPod Touch 1G, it wouldn't connect from the get-go so I just ignored it and used the wifi at my university whenever I went there during the day. 
    If I need to provide any technical information, I can because I have access to the setup for the router.  Thanks. :-)

    Try changing the security mode to WEP and see if that works.
    Open the setup page of the router.
    Click on Wireless tab and go to Wireless MAC filter sub tab. Make sure that Wireless MAC filter is disabled on the router.
    Try to upgrade the firmware on your router.
    Connect the computer with the Ethernet cable to the router.
    Download the latest firmware from Linksys website and save it on your computer. Open the setup page of the router. Click on Administration tab and go to Firmware upgrade sub tab. Browse the firmware file that you have already downloaded and upgrade it on your router.
    After upgrading the firmware on the router, it is recommended that you should reset the router and reconfigure it. Press and hold the reset button on the router for 30 seconds. Release the reset button and wait for 10 seconds. Power cycle the router and reconfigure it.
    Change some advanced wireless settings on the router. Click on Wireless tab and go to Advanced wireless settings. Change the Beacon interval to 75, RTS threshold to 2307 and fragmentation threshold to 2306. Save the settings.

  • Is getting a MacBook Pro with an SSD the same as getting a MacBook Air with Flash?

    Im gonna be getting my first macbook soon, and i'm trying to decide which to get. First off, I'm waiting for the new MBA's to come out to see what they come with, and the new processors. But I was wondering if i were to get the base 13" MBP with the SSD, would that be practically the same machine as the Base 13" MBA (the new ones with SB processors when they come out) with 4gb ram (if they don't come with it already) ?? I really like the idea of having that type of storage. And what will be the difference in the processors?  Also, does anybody have any thoughts on if the new MBA's will have a standard 4gb ram instead of 2??

    If they also have the same storage drive, operating system, graphics and everything else, both freshly installed with OS X, the non-Retina would be faster because it's rendering less pixels to the monitor, which increases the graphics speed overall.
    However your likely to not notice the difference too much, unless you used both extensively using a 3D testing program or your frame rates on your 3D game.
    Determine your Mac's ability for 3D games
    I honestly can't tell too much between my non-Retina and my friends Retina display.
    He wished he had the ability to upgrade his storage drive and memory like I can with my non-Retina, also to have a cd drive.

  • Help, new Droid 2, won't get 3g only 1x with flashing blue triangle

    This is my 4th Droid 2, I like the phone and only go this new one after my last one got wet and had to be replaced.
    I activated the new phone and it won't move off of the 1x (my old Droid 2 that is my desperation phone because it has some issues has 3g).
    I spent 1.5 hours talking to a tech. who suggested I send the phone back as defective.  I did and order a new one from another company.  The same thing is happening, I still make and receive calls, I have internet; what I don't have is 3g and no idea what the problem is.

    Talked to someone again today, still insist it is the phone.  I've had enough with Verizon, if I can return this phone I will quickly move to straight talk!!!!!!!!!!!  I am tired of the "up sale" on everything no matter what I call about.  I was basically told that if I don't buy the phone from Verizon, then I was on my own.
    After 10 years you would think they would try to help a loyal customer.

  • Getting a white screen with flashing ? folder.

    Computer was humming, it got really loud. Computer froze so I turned it off on the back. Once turned on it gives a white screen with a flashing folder in the middle with a ? on it.  This can continued through turning it off several times. Not sure what my next step should be?

    Here is some information and troubleshooting steps to start with:
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/8966.html
    https://support.apple.com/kb/TS1440
    To summarize, the question mark usually indicates that it cannot find a startup disk. One of the steps involved will be to start from the install disk and repair your hard disk, so - if you can - make sure that you have your important data backed up before starting with any of these tips.

  • When I try to open firefox it says that it is not responding, after I disabled the adobe flash plug-in it worked, how do I get it to work with flash

    Since I updated my adobe flash player firefox keeps saying that it is not responding after I open it and it loads my home page, I disabled add-ons and went throught the process of figuring out which one it was and it was adobe flash, but without flash I cant access a lot of different sites, how can I fix this. I have tried uninstalling and reinstalling both firefox and adobe flash, but neither works!

    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • I have a problem to print PDF files with flash embedded.

    I embedded some flash into a PDF file. When previewing the PDF file in Adobe reader 9, the flash looks fine. But when printing the PDF file, the size of the flash become smaller than I specified, and starting repeating in the specified area.
    Am I missing something or is it a bug of Adobe reader 9?

    But do you have the current version of Adobe Reader, which is version 9.2?
    You can check adobe.com for updates for your Adobe Reader for it to function to its full potential.

  • I am still having a problem getting Mail to work with OSX 10.6.8. Non of the fixes are working for me. Any help would be appreciated

    Hi, tried the Apple fix, installing the OSX combo update followed by the Safari update followed by the security update, nothing.
    Tried the thing where you toss the mail program in the trash and then install the security update, nothing.
    Is there anyone else who has a problem even after all trhe fixes suggested here and in Apple support?
    Thank you

    What version of Mail and what happens when you try to use Mail? A little more information would help.

  • White screen with flashing file icon with question mark mean

    What does this mean.   We are getting a white screen with flashing file icon with question mark inside the file. 

    It almost certainly means it can't find a bootable volume (one with OS X on it).
    Which means most likely you will have to find your original system installation DVD and install it. Then you should figure out what caused the problem.
    Read this to diagnose it before resorting to reinstalling the OS:
    http://support.apple.com/kb/TS1440
    Excerpt:
    Additional steps
    If your Mac still starts to a flashing question mark, follow the steps below. If any step resolves the issue, you don't need to continue to the next one.
    Select your Mac OS X startup disk with Startup Manager by restarting and holding the Option key. After your Mac starts up, restart again to verify that the flashing question mark does not appear.
    If the issue persists, insert your Mac OS X installation disc. Be sure to either use the disc that came with your Mac, or, if you installed a later Mac OS X version from disc, use the newer disc.
    MacBook Air note: On a MacBook Air, there are two options for starting up from Mac OS X media: Either connect a MacBook Air SuperDrive to the MacBook Air via the USB port and restart the computer, holding down the C key during startup, or use Remote Install Mac OS X to startup from a system software DVD that's located on a partner computer. Once started up from Mac OS X media, skip to step 3.
    Restart the computer, then hold the C key during startup.
    From the Utilities menu, choose Disk Utility. Don't click Continue.
    Select your Mac OS X disk (named "Macintosh HD" by default) in the left side of the Disk Utility window.
    Click the First Aid tab.
    Click Repair Disk to verify and repair any issues with your Mac OS X startup disk.
    After repairing the disk, try to start up normally.
    Important: If Disk Utility finds issues it cannot repair, you may need to back up as much of your data as possible (or use Time Machine to back up to a different disk), then erase the disk and reinstall Mac OS X. You should back up important files and data before erasing a drive. Erasing deletes everything on the hard disk (including things on your desktop). Also, you can install Mac OS X onto an external disk, start from the external disk, and use Migration Assistant to transfer items from your usual internal Mac OS X startup disk to the external disk, then erase the internal disk and reinstall Mac OS X.
    If the issue persists, and Disk Utility didn't find any irreparable issues, quit Disk Utility, quit the Installer, select your disk when prompted, and restart.
    If the issue continues, reset PRAM. Note: After resetting PRAM, if the computer starts up normally, reselect the startup disk in the Startup Disk preferences.
    If none of these steps resolve the issue, start up from the Mac OS X Installation disc and reinstall Mac OS X.

Maybe you are looking for