I have made a Flash gallery that works in DW but not in browsers

Hi, I am fairly new to Flash and Dreamweaver and have encountered a problem with my CS4 Dreamwever and Flash. I have made two galleries in flash of 30-40 stills that change after 2 seconds in time line. I saved these and exported to DW as .swf files.
Having placed them into my web page in DW and viewing the page locally in both Safari (yes I'am a Mac user) and Firefox they work fine, so I have uploaded the whole schbang to the remote server. When viewing the pages in Safari or Firefox they do not view at all, I get either a blank field in the page where the Flash should be or a message from adobe saying I need to update to a newer version of flash player, depending on which browser I'm using. I have followed the download link and installed the new player but it still comes up the same. Is this somthing I'm doing wrong or a problem with CS4, The CS3 I trained on seemed to be able to do this ok?
All help greatfully received, Thanks

Yopu may have missed uploading a javascript file to the server.  It will be identified in the head section of the html file, possibly as a file in a Scripts folder.  If that is not the case, then you'll need to provide a link to the file on the server.

Similar Messages

  • I have a JavaScript loop that works in Dreamweaver but not in my browsers. What's missing? Should the page load another script first?

    I know that the code is clean because it runs perfectly in DW (even with the occasional lag). Shorter loop functions have also worked in DW, but not in my Chrome or IE browsers. Is there a script or program that the HTML should run first?

    I'm sorry, of course:
    The Crow Haven Witches and Psychics of Salem
    I am designing a phone psychic hotline (don't ask! ) page, and the loop is supposed to sort the readers according to their availability. Each should appear in their respective listing.
    The setup works perfectly in DW, but none of the scripted material appears in the current page. I will add a photo of how it does look in DW.

  • Fonts that work in AppleWorks but not in Pages?  Possible to convert them?

    I don't know enough about fonts to know why this would be the case; I have some fonts which are presently working in AppleWorks, but which are not listed in Font Book and do not show up in Pages.
    Is there some way to convert the fonts so they will work? Some examples are all the free dingbat fonts at http://www.subgenius.com/SUBFONTS/subfont.html

    I tried the Windows version, but that didn't work.
    But, thanks! Font XChange was able to convert them, and they work in Pages now, although due to that being commercial software, the demo version altered them somehow. However in this case at least, since they're dingbats, that doesn't manifestly show.
    For the small amount of font converting I might do, and the limited use I'd probably have for those fonts, I'm not sure about paying $100 for software that does that, even though it does appear to do its job really well. I wonder if there is cheaper, shareware, or freeware software that does the same?
    What is it about these Fonts that necessitated the conversion?

  • I have a motorola s305 bluetooth that pairs with iphone but not iMac. any suggestions?

    I have a motorola s305 that pairs with iphone but not imac. I want to use with Skype. Any suggestions?

    Unpair it from the phone and try again.

  • I have air printer that works on iPhones but not iPad 2

    I have air printer that works with both iPhones but not with iPad2

    Just to build on red_menace's answer a bit...
    set MyText to do shell script "ps -A | grep '[M]ac VNC 2.1.app' | awk '{print $5}'"
    log "MyText=" & MyText
    set content of text field "Dir" of front window to MyText
    The log command will write the results of the "do shell script" to Xcode's run log window. If you see the correct output there then you know that part is working correctly and the problem is in the way you're trying to insert the string into the text field. Maybe "Dir" doesn't match the name you've given your text field in IB? Or maybe your text field is contained within another view, such as an NSBox or an NSTabView?
    Also, I guess "of front window" should work in AppleScript Studio but I always give my windows AppleScript names in IB and then explicitly specify the window in my scripts. Like this:
    set content of text field "Dir" of window "MyWindow" to MyText
    Steve

  • Now I'm stuck again - flash overlay navbar works in IE but not Firefox

    >_<  I spoke too soon on my "success".  My flash navbar and flash slideshow is showing up in IE but it's not loading in Firefox.  Can someone please check on their firefox to see if it's loading?  I've updated all flash plugins and firefox versions but it's not loading.
    Here's the link: http://www.butterflyphotography.ca/Portfolio/Glamorize/glamorize.html
    I've already tried changing the various wmode settings and it doesn't do anything in Firefox.  With wmode = transparent for the navbar, and wmode = opaque for the slideshow, I do get what I want in IE, but not in Firefox.  However, I have another page that doesn't have the slideshow (loader.swf) file and the navbar loads perfectly in Firefox.
    Is it the object tags for embedding the files correct?  I thought it should be correct since I got it from the google support site.  >_<  I would appreciate any help you can give me.
    Thanks again.  And thank you for your patience.

    You have an invalid path reference. in one version of the object tag it reads ../../navbar.swf, in the other this is truncated to ../navbar.swf. Hence the browser can simply not find the file (IE and FF each look at differnt parts of the code).
    Mylenium

  • Adobe Flash Player 10 works with Firefox but not with IE8???

    Hi Gang: I need help, I have downloaded adobe flash player 10, enable my javascript in IE8, but when I attempt to run youtube videos, I get the error message, javascript need to be enable or you need to download a newer version of adobe flash player. I then opened Firefox instead then run the same youtube videos and everything is perfectly fine. Why can't I run youtube videos in IE8 with the adobe flash player 10? What is the fix?
    Thanks

    What's (likely) happening is that the HTML wrapper around the .swf isn't behaving... which causes Flash Player version detection to fail. Hit this test page at youtube - you should see an embedded movie with Flash Player version information.
    http://www.youtube.com/swf_test.html
    You may find success by following the instructions in this tech-note for a complete uninstall... then re-install the latest FP.
    http://kb2.adobe.com/cps/141/tn_14157.html

  • Hi Everyone, i have made a flash gallery using actionscript..how to add a loader to it?

    hi i am loading all thumbs and images in a container on a single frame using action script..but the size of the swf becomes 1.2 mb so i want to add a loader to it...the loader i am trying to add counts the frames but my file has just one frame so the loader doesnot show up..
    here is the script of my gallery..and the timeline has just one frame...
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    this.createEmptyMovieClip("container",1);
    var imagesNumber:Number = 18;
    var scrolling:Boolean = true;
    for (i=1; i<=imagesNumber; i++) {
    container.attachMovie("thumb"+i,"thumb"+i+"_mc",i);
    myThumb_mc = container["thumb"+i+"_mc"];
    if (i==1)
        myThumb_mc._x = (0.0)*myThumb_mc._width;
    else
        myThumb_mc._x = ((1.2*i)-1.2)*myThumb_mc._width;
    myThumb_mc._y = (Stage.height-myThumb_mc._height)/2;
    myThumb_mc._alpha = 100;
    myThumb_mc.largerImage = i;
    myThumb_mc.onRollOver = function() {
    this._alpha = 60;
    myThumb_mc.onRollOut = function() {
    this._alpha = 100;
    myThumb_mc.onRelease = function() {
    this._alpha=100;
    for (i=1; i<=imagesNumber; i++) {
    var myClip = container["thumb"+i+"_mc"];
    myClip.enabled = false;
    scrolling = false;
    _root.attachMovie("image"+this.largerImage,"large_mc",2);
    large_mc._x = (Stage.width-large_mc._width)/2;
    large_mc._y = (Stage.height-large_mc._height)/2;
    new Tween(large_mc, "_alpha", Strong.easeOut, 0, 100, 0.5, true);
    new Tween(container,"_alpha",Strong.easeOut,100,50,0.5,true);
    large_mc.onRelease = function() {
    scrolling = true;
    var myFadeOut = new Tween(large_mc, "_alpha", Strong.easeOut, 100, 0, 0.5, true);
    new Tween(container,"_alpha",Strong.easeOut,50,100,0.5,true);
    myFadeOut.onMotionFinished = function() {
    for (i=1; i<=imagesNumber; i++) {
    var myClip = container["thumb"+i+"_mc"];
    myClip.enabled = true;
    large_mc.removeMovieClip();
    container.onEnterFrame = function() {
    if (scrolling){
    this._x += Math.cos((-_root._xmouse/Stage.width)*Math.PI)*20;
    if (this._x>0) {
    this._x = 0;
    if (-this._x>(this._width-Stage.width)) {
    this._x = -(this._width-Stage.width);
    anyone knows how to add a loadre to this...?
    thanks..

    You'll need to repost in the AS2 forum.  That's all AS2 code and this is the AS3 forum.

  • I have a search box on my site that works in IE but not in FF. How can i giv you the code?

    The code:
    <pre><nowiki><!-- This Script is from www.htmlfreecodes.com, Coded by: Krishna Eydat-->
    <SCRIPT language=JavaScript>
    var NS4 = (document.layers);
    var IE4 = (document.all);
    var win = window;
    var n = 0;
    function findInPage(str) {
    var txt, i, found;
    if (str == "")
    return false;
    if (NS4) {
    if (!win.find(str))
    while(win.find(str, false, true))
    n++;
    else
    n++;
    if (n == 0)
    alert("Not found.");
    if (IE4) {
    txt = win.document.body.createTextRange();
    for (i = 0; i <= n && (found = txt.findText(str)) != false; i++) {
    txt.moveStart("character", 1);
    txt.moveEnd("textedit");
    if (found) {
    txt.moveStart("character", -1);
    txt.findText(str);
    txt.select();
    txt.scrollIntoView();
    n++;
    else {
    if (n > 0) {
    n = 0;
    findInPage(str);
    else
    alert("Sorry, we couldn't find.Try again");
    return false;
    </SCRIPT>
    <FORM name=search onsubmit="return findInPage(this.string.value);">
    <P align=center><FONT size=4; COLOR=#ffffff;>
    <INPUT style="BORDER-RIGHT: #ffffff 1px solid; BORDER-TOP: #ffffff 1px solid; FONT-SIZE: 8pt; BORDER-LEFT: #ffffff 1px solid; BORDER-BOTTOM: #ffffff 1px solid"
    onchange="n = 0;" size=16 name=string><INPUT style="BORDER-RIGHT: #ffffff 1px solid; BORDER-TOP: #ffffff 1px solid; FONT-SIZE: 8pt; FONT-COLOR: #ffffff; BORDER-LEFT: #ffffff 1px solid; BORDER-BOTTOM: #ffffff 1px solid; FONT-FAMILY: Tahoma; FONT-COLOR: #ffffff; BACKGROUND-COLOR: #16ADE6; color:#FFFFFF" type="submit" id="Button1" name="" value="Sök ID Kod" style="position:absolute;width:96px;height:25px;border:0px #000000 solid;background-color:#17AFE7;color:#FFFFFF;font-family:Arial;font-size:13px;">
    </center></font></nowiki></pre>

    Try posting at the Web Development / Standards Evangelism forum at MozillaZine. The helpers over there are more knowledgeable about web page development issues with Firefox. <br />
    http://forums.mozillazine.org/viewforum.php?f=25 <br />
    You'll need to register and login to be able to post in that forum.

  • Flash image viewer works in preview but not online

    Hi
    I followed an online demo on how to get an image slideshow on my webpage using flash. It was using insert media image viewer. It all worked fine, looked great in the preview but when I put everything online I can't see it. Just an empty space were it should be. This is the site where it is
    http://www.idoityourself.com.au/ if tried moving the image to different areas in case it didn't like being in a folder within a folder etc but still didnt work. Any ideas??
    thanks

    http://www.idoityourself.com.au/Scripts/AC_RunActiveContent.js File not found.
    You have not uploaded the Scripts folder to your server which DW generated automatically for you when you inserted the Flash.

  • On a MAC with OS 10 how do I pinch, tap to make larger, and some other gestures that work on Safari but not FireFox

    I can not do all the gestures when I am in FireFox. Example Pinch to increase or decrease size of window. Tap with two fingers to increase the size of window. The other gestures like scrolling, swiping etc work.

    Hello Shona37a, if you have the [http://kb.mozillazine.org/Places.sqlite places.sqlite] file probably you are ok. the places.sqlite file can be edit with SQLite Manager or a specialized editor BUT you can move it to a [https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles#os=mac&browser=fx17 new profile], see informatinos in the above link.
    also think if you must go to [http://www.floodgap.com/software/tenfourfox/ TenFourFox] for PowerPC's running Mac 10.4.11 & 10.5.8 , it is more secure from your 3.6.18 that is unsupported.
    EDIT : [https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile#w_copying-files-between-profile-folders Copying files between profile folders]
    http://kb.mozillazine.org/Transferring_data_to_a_new_profile_-_Firefox
    thank you

  • I have latest adobe flash player installed can watch youtube but not on powerpoint?

    Hello i am having trouble watching you tube clips i have attached to powerpoint it wont let me watch them it comes up with a box that says "install latest flash player" but im told i have the latest how can i watch my youtube clips on powerpoint ??
    Thankyou

    See similar topics
    http://forums.adobe.com/thread/1169640
    http://forums.adobe.com/thread/1175422

  • Thunderbird will not recgonize or authenticate a google pasword that works in Google but not in Thunderbird.

    Thunderbird does not recognize a password for a Google account. I keep getting pop ups indicating that the password can not be found on the server. MY other Google accounts are ok.
    What do I have to do to get this email account working?

    Sounds like a gmail 2 step authentication issue or a Less Secure Application Issue. Google has instructions on solving both.

  • SplashScreen class that works in Linux but not Windows?

    OK so I wrote this splashscreen class:
    public class SplashScreen extends JWindow {
        public SplashScreen(String imageFile, int msecs) {
            Image imgData = getToolkit().getImage(getClass().getResource(imageFile));     
            System.out.println(imageFile);
            // Create label with image on it               
            ImageIcon image = new ImageIcon(imgData);
            // Create label with image as content
            JLabel imageLabel = new JLabel(image);
            // Add label to content pane
            getContentPane().add(imageLabel, BorderLayout.CENTER);
            // Resize window to match image
            pack();
            // Get the size of the screen and the size of the image
            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            Dimension imageSize  = imageLabel.getPreferredSize();
            System.out.println(String.format("%d %d", imageSize.width, imageSize.height));
            // Center window on screen
            this.setLocation(screenSize.width/2 - (imageSize.width/2), screenSize.height/2 - (imageSize.height/2));
            // Runnable that handles closing down the screen
            final SplashScreen parent = this;       
            final Runnable closeThread = new Runnable() {
                public void run() {
                    parent.setVisible(false);
                    parent.dispose();
            // Thread that simple sleeps and then calls the closer
            final int waitTime = msecs;
            Thread waitThread = new Thread(new Runnable() {
                public void run() {
                    try {
                        Thread.sleep(waitTime);
                        SwingUtilities.invokeAndWait(closeThread);
                    } catch (Exception e) {
                        e.printStackTrace();
            // Display the screen
            setVisible(true);
            // Wait and close
            waitThread.start();              
    }Which I call thusly:
    gui.SplashScreen sc = new gui.SplashScreen("/images/splashscreen.png", 2000);Obviously this is supposed to display the given image on the screen for 2 seconds before disappearing. My problem is that it works exactly like you'd expect in Linux, but when I run it in windows the image doesn't appear. The app loads and runs fine otherwise. I put some print outs in and verified that it looks like it's finding the image correctly, but then it just doesn't display... I'm stumped, does anyone have any clue why this would be a problem on different platforms?

    Seriously? I tried it on two different windows machines and it didn't work.... Maybe it has something to do with how netbeans is jarring stuff up.

  • How can I play cd that is formatted for pc - it is continuing ed cd that works in car but not on my laptop

    I called my professional organization that sells the material and they said there is a way to play it on a mac, but the person I spoke to didn't know how to do it.  any ideas?

    Is this an audio CD or what?

Maybe you are looking for