Flash not working in Dreamweaver

Hello.. hope someone can help.
I'm trying to get a photo gallery to work in Dreamweaver.
Everything is working fine when testing in Flash but when add to my
Dreamweaver file and test in browser, it doesn't work.
any help is really appreciated

Any way you can post a link to the page you have uploaded?
Also, you may want to read this after you update to DW 8.0.2,
reagrding the
"click to activate" thing in IE -
It's IE-only behaviour as a result of changes Microsoft made
several
years ago to their browser, regarding how Active Content
(Flash, Quicktime
etc)
is handled, after losing a high profile court case.
http://blog.deconcept.com/2005/12/15/internet-explorer-eolas-changes-and-the-flash-plugin/
Background:
http://en.wikipedia.org/wiki/Eolas
See also
http://www.adobe.com/devnet/activecontent/
If you're running Dreamweaver 8.0.2/CS3, the fix is already
built into DW's
interface.
If not, try
http://blog.deconcept.com/swfobject/
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"lorinda75" <[email protected]> wrote in
message
news:[email protected]...
> version 8.0
> <!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>Beautimport</title>
> <style type="text/css">
> <!--
> body {
> margin-left: 0px;
> margin-top: 0px;
> margin-right: 0px;
> margin-bottom: 0px;
> }
> #leftimage {
> height: 260px;
> width: 160px;
> margin-top: 10px;
> float: left;
> margin-left: 0px;
> }
> #gallery {
> height: 330px;
> width: 570px;
> padding-right: 20px;
> margin-top: 45px;
> }
> -->
> </style>
> <link href="css/index.css" rel="stylesheet"
type="text/css" />
>
> <style type="text/css">
> <!--
> .style1 {font-size: 12px}
> #content2 {
>
> height: 275px;
> width: 600px;
> background-repeat: no-repeat;
> }
> -->
> </style>
> </head>
>
> <body>
>
> <div id="wrapper">
> <div id="header"></div>
> <div id="banner"></div>
> <div id="menu">
>
>
<a href="index.html">HOME</a></li>
>
<a href="aboutus.htm">ABOUT US</a></li>
>
<a href="education.htm">EDUCATION</a></li>
>
<a href="products.htm">PRODUCTS</a></li>
>
<a href="newsandevents.htm">NEWS &
EVENTS</a></li>
>
<a href="gallery.htm">GALLERY</a></li>
>
<a href="feedback.htm">FEEDBACK</a></li>
>
> </div>
> <div id="content2">
> <div id="title"><img
src="images/titleGallery.jpg" width="400"
> height="25"
> /></div>
> <div id="gallery">
> <object
classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
> codebase="
http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#ve
> rsion=7,0,19,0" width="570" height="330">
> <param name="movie"
value="images/thumbnail_initial2.swf" />
> <param name="quality" value="high" />
> <embed src="images/thumbnail_initial2.swf"
quality="high"
> pluginspage="
http://www.macromedia.com/go/getflashplayer"
> type="application/x-shockwave-flash" width="570"
height="330"></embed>
> </object>
> </div>
> </div>
> <div id="footer">
>
>
<a href="#">disclaimer</a></li>
>
<a href="#">|</a></li>
>
<a href="#">copyright </a></li>
>
<a href="#">|</a></li>
>
<a href="#">privacy policy</a></li>
>
>
> </div></div>
> </div>
> </body>
> </html>
>
>

Similar Messages

  • Photogallery in Flash not working in dreamweaver??

    Hi everyone!
    I hope someone will be able to help me: Ok here is the
    situation:
    I created a photogallery in flash by creating a blank movie
    clip and naming the instance "holder" then I created buttons below
    this with thumbnail photos. The action script in the thumbnails is
    on(release) {
    this.holder.loadMoive("image1.jpg",0);
    It works perfectly in flash! Then when I import the swf file
    into the dreamweaver site that I am building, my thumbnails show
    up, but they no longer bring up the image inside the movie clip.
    AHHHHH!!!! So basically I click on the button and no image appears.
    What am I doing wrong? Please help.
    Thank you so much!

    c2design wrote:
    > Hi everyone!
    >
    > I hope someone will be able to help me: Ok here is the
    situation:
    > I created a photogallery in flash by creating a blank
    movie clip and naming
    > the instance "holder" then I created buttons below this
    with thumbnail photos.
    > The action script in the thumbnails is :
    > on(release) {
    > this.holder.loadMoive("image1.jpg",0);
    You have mismatch action here. You load it in holder but than
    you define level
    so you mixing two separate actions.
    Either you stick to Holder loadMovie("file.swf", "holder");
    or level
    loadMovieNum("file.swf", 1);
    By the way, if you load in level, do not load in 0, zero is
    main level by default
    and by loading into it you will replace you entire movie.
    > It works perfectly in flash! Then when I import the swf
    file into the
    > dreamweaver site that I am building, my thumbnails show
    up, but they no longer
    > bring up the image inside the movie clip. AHHHHH!!!! So
    basically I click on
    > the button and no image appears. What am I doing wrong?
    Please help.
    Another problem that could be is that you link to SWF file in
    some sub folder.
    When you have html on the root of server and flash in folder
    (example only) "images",
    than link that html to images/name.swf , flash no longer will
    remember it was in that
    "images" directory, it assumes it is in place where the HTML
    file is and seek its files
    from that perspective so paths will automatically change. So,
    if you had image to load
    along with flash file in directory "images" and call it
    directly using loadMovie("file.swf",
    "holder"); you will now need to change that action to
    loadMovie("images/file.swf", "holder");
    Make sense ?
    By the way, get rid of "this" from your action, it make no
    sense in your case.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Iphone 4 camera flash not working.

    Iphone 4 camera flash not working when taking pictures but works with the flashlight app. I have ios 7. Tried factory reset. My wife has the same problem with her iphone 4 since the first month she has had it. Any suggestions?

    and what have you done to try and fix the situation?  Have you taken the steps recommended in the User Guide?

  • Flash not working in Safari 5

    Flash has been buggy for me in Safari 5, ever since I updated the Flash player last week to "10.1 r53". Either Flash files don't play at all, or just the audio plays without video.
    Per the instructions on these boards, I have:
    1. reset Safari
    2. uninstalled flash player
    3. installed the flash player
    4. repaired permissions
    5. restarted
    The issue is still there. Firefox plays Flash files, YouTube, etc. just fine. Safari does not.
    I'm running SL 10.6.4, latest Software Updates.
    Any suggestions?
    Thanks!

    I created a new account. Flash works in the new account. That's cool, but I really don't want to re-locate all my prefs, etc., just for a buggy plugin.
    So, I next...
    1. grabbed the Safari plist from the new account
    2. logged out of the new account
    3. logged into the old account (where Flash does not work)
    4. moved the old account's com.apple.safari plist file out of the Preferences folder
    5. moved the clean Safari plist file (from the new account) into the Preferences folder
    6. reset and restarted Safari
    7. Flash worked...for about two minutes. I tested on YouTube, Vimeo and Google Analytics. Back to Flash not working in Safari.
    I then tried repeating the earlier steps.
    1. reset Safari
    2. uninstall flash player
    3. install flash player
    4. repaired permissions
    5. restarted
    Still doesn't work.
    Just one other thing to note: whenever I pull up a web page with Flash, I get a "file not found" error in Safari's activity monitor (link is below)...could this be an error with Adobe's website rather than a Safari-permission thing?
    http://fpdownload2.macromedia.com/get/flashplayer/update/current/install/version .xml10.1.53.64~os=Mac&osVer=10.6.4&playerType=pl&cpuWordLength=32&cpuArchitectur e=i386&lang=en

  • Flash not working in photo booth.

    The flash in photo booth on my iMac is not working.  When I take a pic, the screen flashes but the pic is still dark.  Was working fine yesterday.  I did install the latest osx today.  That's the only changes since then.

    In case anyone is interested in your screen flash not working in the Yosemite or Maverick photo booth application, I finally called Apple today and he kept insisting it was working on his - I asked him to take a pic with the screen flash enabled and then disable it and he said it came out the same. And rationalized that it was because he was in a well lit room. I kept telling him in my old photo booth from system 10.6.8 that my face was lit up and my husband had reflections from his glasses so we went from him wanting me to reinstall my software (I refused since both computers were having the same problem - one using Yosemite and the other using Maverick)  to him finally going into HIS partitioned disk that has system 10.6.8 on it to discover that the flash there reflected off HIS glasses too. Bottom line is he admitted there has to be some flaw that prevented the photo booth flash from working for Maverick and Yosemite. Whew, finally validation!
    Martha

  • Why does adobe flash not work in my firefox. i have down loaded it several times. it will work in explorer and chrome.

    why does adobe flash not work in my firefox. i have down loaded it several times. it will work in explorer and chrome.

    IE uses a different version of Flash than other browsers use. You need to install the Plugin version of Flash for Firefox.
    1.Download the Flash setup file from here: <br />
    [http://fpdownload.adobe.com/get/flashplayer/current/install_flash_player.exe Adobe Flash - Plugin version]. <br />
    Save it to your Desktop.<br />
    2. Close Firefox using File > Exit <br />
    then check the Task Manager > Processes tab to make sure '''firefox.exe''' is closed, <br />
    {XP: Ctrl+Alt+Del, Vista: Shift+Ctrl+ESC = Processes tab}
    3. Then run the Flash setup file from your Desktop.

  • Java & Flash not working in safari

    Hello Friends,
    why java & flash is not working in safari?
    I have checked Java preferences, tab called general tab, and the checkboxes, both checked. java version run on the termial & it confirmed java by displaying it's version. running perfect.
    The problem is java & flash not working in safari, might be because of , so?
    when ever i open sites like web design company for project i wasn' t able to open such sites...
    kindly guide me for the same.
    Thanks,
    John Millard
    Edited by: 951029 on Aug 6, 2012 4:01 AMJavatester site<a/>, so?
    when ever i open sites like web design company for project i wasn' t able to open such sites...
    kindly guide me for the same.
    Thanks,
    John Millard
    Edited by: 951029 on Aug 6, 2012 4:01 AM

    Flash is totally unrelated to Java, so what you're saying is that certain plugins are not working under Safari of which one just happens to be Java. You're the second one I see make mention of that, but the fact remains that you'd need to ask Apple what is going on with their browser.

  • Photo Booth flash not working in Maverick or Yosemite

    I have noticed that the photo booth flash in Maverick on my Macbook Pro and in Yosemite on my iMac is not working Screen flash is enabled on both.
    So this is happening on two different computers. Does anyone know how to fix this? All my photos are so dark on both of my computers using Maverick and Macbook Pro.
    It works fine on system 10.6.8 though.
    Has anyone else had this problem too?
    Martha

    In case anyone is interested in your screen flash not working in the Yosemite or Maverick photo booth application, I finally called Apple today and he kept insisting it was working on his - I asked him to take a pic with the screen flash enabled and then disable it and he said it came out the same. And rationalized that it was because he was in a well lit room. I kept telling him in my old photo booth from system 10.6.8 that my face was lit up and my husband had reflections from his glasses so we went from him wanting me to reinstall my software (I refused since both computers were having the same problem - one using Yosemite and the other using Maverick)  to him finally going into HIS partitioned disk that has system 10.6.8 on it to discover that the flash there reflected off HIS glasses too. Bottom line is he admitted there has to be some flaw that prevented the photo booth flash from working for Maverick and Yosemite. Whew, finally validation!
    Martha

  • CMD+ shortcuts not working in Dreamweaver CS3

    I'm have a very strange issue with CMD+ keyboard shortcuts
    not working in Dreamweaver CS3 on OSX 10.5. These actions are
    working from the menus (i.e., copy, cut, paste, etc.). CMD+
    shortcuts work in other CS3 apps. I've searched this forum and
    googled up and down and found some references to issues like this
    with Dreamweaver 8, but nothing for CS3.
    Has anyone experienced this problem? I'm completely stumped.
    Lawrence

    My concern wasn't with the navbar, but thanks for the headsup.
    The problem is that the link in the upper left hand corner, Suzie's Story, is a rollover image but it does not reveal the other image when the cursor goes over it.
                            <div id="topTabs1">
       <div align="center"><a href="http://www.google.com" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('suzie','','Images/Suzie's Story Tab_light.jpg',1)"><img src="Images/Suzie's Story Tab_black.jpg" alt="suzie" name="suzie" width="75" height="45" border="0" id="suzie" /></a></div>
             </div>
    #topTabs1 {
    width: 75px;
    height: 45px;
    float: left;
    background-color: #ffffff;
    padding-left: 0px;
    padding-right: 0px

  • Command S not working in Dreamweaver CS6

    Command S not working in Dreamweaver CS6

    Every time I've run into an issue like this, clearing the cache file has repaired it...
    http://forums.adobe.com/thread/494811
    As long as it's not a system wide issue that is.

  • Flash Buttons Not Working in DREAMWEAVER !!!!!!!!!!! :(

    Ive made an animation in flash of curtians opening to a stage of dancers, who are all buttons.
    When i put this animation into dreamweaver and test the web page the buttons do NOT work
    PLEASE HELP ME !!
    lmack

    Most likely a site definition problem.  Did you define a local site in DW BEFORE you created your web page?  This critical first step is necessary for DW to properly manage your site.
    If you don't already have web hosting (a commercial web server space), you need to sign-up for one.  There are countless hosts and hosting plans available.
    Use the log-in details provided by your web host to set-up your Remote Site connection in DW.  See link below for details.
    Creating  your first web site in DW CS5 -
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt1.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Link works in Flash 8 but it does not work in Dreamweaver

    I made a Flash swf file which contains button and ball. When
    I put mouse over the button, the ball jumps up.
    And also I have managed to attach a link to the button using
    action script.
    Strange thing is the link works fine when I use test movie
    with Flash 8 but when I insert it into Dreamweaver, although the
    ball works fine with mouse over but the link does not work at all.
    Can anybody tell me why?
    Why it work with test movie in Flash 8 but not in Dreamwever.
    Thank you very much in advance.

    I have just solve my question myself.
    In a Dreamweaver preview the link does not work but once the
    page is published it works.
    Thank you.

  • Flash not working on server

    Hi
    I have a problem.
    My website http://www.advancedhomeconstruction.com/images/index.html
    has a flash album.
    It works on my computer but not on the server.
    I copied the whole directory on the server from my computer.
    It has the AC_RunActiveContent.jsscript file in the images/script directory
    the slideshow.xml  xml file
    the sliver_silver.swf  swf file
    why is the flash not showing on the server.
    Please could someone help me soon. I would greatly appreciate it.
    Thank you.
    Ann

    I am having a very similar problem. I can't resolve it for you, but maybe what I have found out can lead you down the right path. Or maybe someone will have an easier fix than was suggested to me.
    I built a website for a class in Dreamweaver. I used absolute positioning and z-index. The flash banner is the first object and at z-index 0. The site works just fine on my computer. I uploaded the site to my server and the banner disappears. Well you can still see about a sixteenth of an inch, peeking at the top of the next object.
    What I have discovered it that flash and z-index do not play well together. I understand it is fixable. But it requires more code than I am willing to deal with.
    I'll be watching the thread.

  • HDS live streaming to Flash not working

    Adobe Flash Media Server 4.5.5 r4013
    Windows 2008
    Sources:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WSd391de4d9c7bd609-52e437a812a3725df a0-8000.html
    http://www.adobe.com/devnet/adobe-media-server/articles/live-multi-bitrate-video-http-flas h-ios.html
    Live streaming a single or multi-bitrate video over HTTP to Flash does not work. I have followed the instructions on the 2 sources listed above repeatedly, but I can’t get live streaming over HTTP to Flash to work. Live streaming to iOS over HTTP works with no problems (single and multi-bitrate streams).
    I have tried the troubleshooting steps from the following:
    http://help.adobe.com/en_US/flashmediaserver/devguide/WS0432746db30523c21e63e3d12efac195bd -8000.html
    Troubleshoot live streaming (HTTP)
    1.      Services window (Windows): Flash Media Server (FMS), Flash Media Administration Server, and FMSHttpd services are running. ✓
    2.      Verified that the request URL is correct. ✓
    3.      Configured ports:
    a.      Configure Apache to use port 80. Open rootinstall/Apache2.2/conf/httpd.conf in a text editor. Change the line Listen 8134 to Listen 80.
    b.     Configure Flash Media Server not to use port 80. Open rootinstall/conf/fms.ini in a text editor. Remove 80 from the ADAPTOR.HOSTPORT parameter so the parameter looks like the following: ADAPTOR.HOSTPORT = :1935 ✓
    4.      Placed a crossdomain.xml file to the rootinstall/webroot directory. ✓
    5.      In Flash Media Live Encoder, select the Encoding Options tab, choose Output from the Panel options menu, and verify the following:
    a) The value of FMS URL is rtmp://fms-dns-or-ip/livepkgr. If you’re testing on the same server as Flash Media Server, you can use the value localhost for fms-dns-or-ip. ✓
    b) For a single stream, the value of Stream is livestream?adbe-live-event=liveevent. ✓
    c) For adaptive bitrate streaming, the value of Stream is livestream%i?adbe-live-event=liveevent. ✓
    Flash Media Live Encoder uses this value to create unique stream names. To use another encoder, provide your own unique stream names, for example, livestream1?adbe-live-event=liveevent, livestream2?adbe-live-event=liveevent.
    The encoder is showing all 3 streams being published and streaming.
    6. Check Administration Console: the livepkgr application and the 3 streams are running. ✓
    7. Check the logs for errors. Flash Media Server logs are located in the rootinstall/logs folder. The master.xx.log file and the core.xx.log file show startup failures. Apache logs are located in the rootinstall/Apache2.2/logs folder. X
    a)   core00.log: these errors did not occur every time that I tried playing the live stream but these are the only relevant errors in the logs.
    1. 7968 (w)2611179     Warning from libf4f.dll: [Utils] [livestream2] Discarded all queued Media Messages received before first Video Keyframe Message
    2. 7968 (w)2611179     Warning from libf4f.dll: [Utils] [livestream3] Discarded all queued Media Messages received before first Video Keyframe Message
    b) edge00.log:
    13:33:57 4492          (w)2641213 Connection rejected by server. Reason : [ Server.Reject ] : (_defaultRoot_, _defaultVHost_) : Application (hds-live) is not defined.          -
    c) Apache-Error:
    1.     [warn]  Checking if stream is disabled but bootstrap path in event file is empty for event:livepkgr/events/_definst_/liveevent stream name:livestream
    2.     [warn] bootstrap path is in event file is empty for event:livepkgr/events/_definst_/liveevent stream name:livestream1
    As I mentioned, everything works on iOS and FMS seems to be creating all of the stream segments and meta files:
    a.     The 3 streams are being created in: HD:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\streams\_definst_
    b.    FMS is creating the following files in each stream folder (livestream1, livestream2, livestream 3):
    1. livestream1.bootstrap
    2. livestream1.control
    3. livestream1.meta
    4. .f4f segments
    5. .f4x segments
    The appropriate files are also being created in the HD:\Program Files\Adobe\Flash Media Server 4.5\applications\livepkgr\events\_definst_\liveevent folder, in which I have the following Manifest.xml and Event.xml files:
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
      <media streamId="livestream1" bitrate="200" />
      <media streamId="livestream2" bitrate="500" />
      <media streamId="livestream3" bitrate="1000" />
    </manifest>
    <Event>
      <EventID>liveevent</EventID>
      <Recording>
    <FragmentDuration>4000</FragmentDuration>
    <SegmentDuration>16000</SegmentDuration>
        <DiskManagementDuration>3</DiskManagementDuration>
      </Recording>
    </Event>
    I’ve tried clearing the contents of both streams\_definst_ and events\_definst_\liveevent (keeping the xml files) after restarting the encoder, and creating a different event definst for the streams (liveevent2 for example).
    We have an event in 2 weeks that we would like to stream to both Flash and iOS. Any help in solving this problem will be greatly appreciated.

    One step closer:
    Changed the crossdomain.xml file (more permissive settings).
    Changed the encoding on FMLE to vp6. Working somewhat (don't know what I did to make it start streaming through hds).
    But at least now I can get the individual streams in the set manifest file to work:
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream1.f4m
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream2.f4m
    http://localhost/hds-live/livepkgr/_definst_/livevent/livestream3.f4m
    BUT when I try to play the streams through the set manifest file from http://localhost/liveevent.f4m I'm getting the following error:
    "The F4m document contains errors URL missing from Media tag." I'll search the forums to see if anyone else has come across this problem.
    I used the f4m config tool to make the file. These are the file's contents:
    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
      <baseURL>http://localhost/hds-live/livepkgr/_definst_/liveevent/</baseURL>
      <media href="livestream1.f4m " bitrate="200"/>
      <media href="livestream2.f4m " bitrate="500"/>
      <media href="livestream3.f4m " bitrate="1000"/>
    </manifest>
    Thanks

  • IPhone 4 battery draining + flash not working

    I've had my phone since February 2011, and haven't had any problems up until today. The flash no longer works, I've attempted taking pictures and using flashlight apps, but it's not working whatsoever. And yesterday, the battery started draining like crazy out of nowhere. I fully charged it before unplugging for the night, and by the time I woke up it was completely dead. My phone is usually my alarm, so I was lucky to wake on time. I fully charged it tonight after it drained again, and it's already at 78% just a few hours later and no use. My phone has been opened before, but not fiddled around with at all. Any ideas of what could be causing this, I appreciate!

    Just an update - this ended up not fixing my problem.   The battery is still draining.  
    On a side note - I actually left my phone charging overnight and the alarm did not go off this morning because the phone was mysteriously shut off during the night.   It hasn't done this in 3 years but did the night of the iOS upgrade yesterday.

Maybe you are looking for

  • Library on an external hard disk

    I have my itunes music on an external hard disk and I want to install itunes on a new laptop and view the existing itunes library that is on the external hard disk. I have installed itunes on the new laptop and changed the default location of the itu

  • Combining 2 spatial queries into 1

    Hi there. I want to merge two different spatial queries both of which return a single aspect of what I need. The first query returns the distinct group feature ids of all those geometries falling within a specified tolerance of a particular point, i.

  • Paradigm Millenia CT - Good iMac speakers?

    I was thinking about purchasing Paradigm Millenia CT speakers for use with both my iMac and my TV. Just wondering if these would be good desktop speakers since they seem more oriented for TVs? I'm also somewhat hesitant to try and use them as both my

  • ADVANCED ACTIONS, expresion adecuada para mostrar porcentaje

    Muy buenas tardes a todos. Me presento muy brevememente. Soy Josef Garza, profesor de inglés en el DF. Estou usando Captivate 7 para diseñar pequeñas unidades para consolidar los conocimientos en mis clases de inglés. Hice un cuestionario usando widg

  • Website hosting changed, how I can do ?

    Hi, I changed my website hosting, so I can't upload my podcast anymore from this link "http://maxime15.com/public/podcast.xml" because "podcast.xml" doesn't exist anymore. I'm lost, please help me! Thanks