Exported fireworks loops too quickly

I've used Fireworks to create several frames holding images
and set the timings to be observed during the frames. Have tried
exporting this to animated gif, swf and png and then inserted these
resutling files into my dreamweaver page. The animation works
correctly when viewing on my C drive, but once ftp'd to my site and
viewing with a browser, the looping is too fast. No settings i've
made seems to slow down the animation. Anyone know what I might be
doing wrong?
thanks......becky

Hi Becky:
They are photographic images - and relatively large
dimensions - so GIF
may not be the best option to begin with, as GIF's reduce the
color
palette and are affected by image dimensions (bigger files).
I'm not a Flash person, but inserting jpegs into a flash
movie would
give you better quality and I would think, more control.
Both pages transistioned for me - although yes - incredibly
fast. But I
think this ahs got to do with the timeline in flash, as both
sample
pages are flash movies. I do not know if any frame delay
settigns you
use in an animated GIF file will be directly read or
understood by Flash.
If you want to stick with GIFS, also check to make sure that
ALL the
frames are selected before you input the timing. It's
possible that you
only applied the frame delay to one frame, rather than all of
them.
If a slide show is what you're looking for, have you tried
out Alan
Musselman's Fireworks Album Creator extension?
http://weblogs.macromedia.com/amusselman/archives/custom_commandsmxps/index.cfm
Hope this helps!
Jim Babbage
rebasue wrote:
> Thanks Alex....but I don't think I'm guilty of any of
the 3 you mentioned.
>
> Here is the page which is flipping too quickly in
Firefox and Internet
> Explorer:
http://www.acrossmyheart.com/joe.html
>
> I think I have the frame speed set to 300/100 sec
because the help files said
> that would display each frame for about a second?
> and this page doesn't loop at all in Firefox or Internet
Explorer:
>
http://www.acrossmyheart.com/zip.html
>
> I have tried pasting in the HTML code from inside
Dreamweaver using the
> Insert....Fireworks HTML route.
>
> I have tried inserting an image object and grabbing the
swf file
>
> AND I've tried inserting.....image and grabbing the
animated gif.
>
> Clearly I am missing something along the way. Which of
the above 3 insertions
> is correct? HTML, SWF or animated gif?
>
> becky
>
>

Similar Messages

  • Just bought Photoshop Elements 13...I'm trying to make a slideshow but can't figure out how to alter duration time that the slide is on the screen.  They presently move from one to another way too quickly...also need a different pan and zoom option.  Wher

    Just bought Photoshop Elements 13...I'm trying to make a slideshow but can't figure out how to alter duration time that the slide is on the screen.  They presently move from one to another way too quickly...also need a different pan and zoom option.  Where are all the options I had in PS10?  Also...Can I burn this to a DVD?

    The changes have brought improvements but also drawbacks compared with the old slideshow editor.
    The templates are now fairly fixed but I find the “Classic Dark” gives reasonable results with some panning and you can click the audio button and browse you PC for any track. Unfortunately there are only three speed choices linked to the music track. The improvement for most people is that you can now export to your hard drive at 720p or 1080p and upload to sites like YouTube and Vimeo.

  • Restarting too quickly, changing state to maintenance

    I'm trying to add a new resource to stop/start at reboot time. It's a single process that needs to be started, but everytime I enable the resource it keeps stopping and starting it until eventually it goes into maintenance saying "Restarting too quickly, changing state to maintenance".
    I have the following in the /lib/svc/method (start) file :
    #!/sbin/sh -xv
    # Start method script for the xcom service
    . /lib/svc/share/smf_include.sh
    case "$1" in
    'start')
    if [ `pgrep xcomd` ]
    then
    echo "$0: XCOM is already running..."
    exit $SMF_EXIT_ERR_NOSMF
    fi
    if [ -x /etc/xcomd ]
    then
    echo "Starting XCOM..."
    /etc/xcomd
    else
    echo "XCOM is not installed or not executable..."
    exit $SMF_EXIT_ERR_NOSMF
    fi
    'stop')
    if [ `pgrep xcomd` ]
    then
    echo "Stopping XCOM..."
    /etc/xcomd -s
    else
    echo "XCOM is not running..."
    fi
    esac
    exit $SMF_EXIT_OK
    And the following in /var/svc/manifest/application/xcom.xml :
    <?xml version='1.0'?>
    <!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
    <service_bundle type='manifest' name='export'>
    <service name='application/xcomd' type='service' version='0'>
    <create_default_instance enabled='true'/>
    <single_instance/>
    <dependency name='usr' grouping='require_all' restart_on='none' type='service'>
    <service_fmri value='/system/filesystem/minimal'/>
    </dependency>
    <exec_method name='start' type='method' exec='/lib/svc/method/xcomd %m' timeout_seconds='60'>
    <method_context/>
    </exec_method>
    <exec_method name='stop' type='method' exec='/lib/svc/method/xcomd %m' timeout_seconds='60'>
    <method_context/>
    </exec_method>
    <stability value='Unstable'/>
    <template>
    <common_name>
    <loctext xml:lang='C'>XCOM file transfer program</loctext>
    </common_name>
    <documentation>
    <manpage title='xcomd' section='8'/>
    <manpage title='xcomcfg' section='8'/>
    </documentation>
    </template>
    </service>
    </service_bundle>
    Any ideas where this is going wrong??? I've pulled the manifest file togeher looking at other things so I'm not surprised if there's errors in there. Any help greatly appreciated.

    Change the name of the script to be anything other
    than 'xcomd' or 'svc-xcomd' and it would work. That's
    what I've done now. The start/exec and stop/exec now
    call a different script. One problem I had with this
    was even though when doing a 'listprop' it showed it
    had taken the change, and I'd exported it out to the
    manifest file, when trying to enable the resource it
    would complain that it couldn't find the old script
    [ Feb 15 18:12:53 Executing start method ("/lib/svc/method/svc-xcomd") ]
    /sbin/sh: /lib/svc/method/svc-xcomd: not found
    [ Feb 15 18:12:53 Method "start" exited with status 1]
    Is there a way of refreshing things one you make a
    change??? When I'm exiting out I'm either using 'end'
    or 'exit'.Yes, you have to run "svcadm refresh xcomd". This is
    because svc.startd uses the property values from the
    "running" snapshot of the service. svcprop does that by
    default as well. A plain listprop in svccfg, though, will only
    show you the current values of the properties. (You can use
    selectsnap to select the running snapshot and examine its
    property values with listprop.) svcadm refresh updates the
    running snapshot with the current property values, so that must
    be done after changing properties.

  • How do I stop my screen saver from coming on too quickly on my MacBook Pro 2012, How do I stop my screen saver from coming on too quickly on my MacBook Pro 2012

    How do I stop my screen saver from coming on too quickly on my MacBook Pro 2012

    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro
    https://discussions.apple.com/community/mac_os?view=discussions 
    http://www.apple.com/support/macbookpro

  • Zen Xtra 60 GB: battery goes down too quickly, even when inact

    Hello, folks, this is my problem with Zen Xtra 60 GB, which I own for more than a year. A week ago I suddenly noticed that the battery is completely down the other morning, after I played music last night for a few hours on AC. So I plugged it to AC again and - differently from the other people's experiences - it started operating and charging. And I could play the music while charging, and manage the tracks with Nomad Explorer as well. After it charged completely, I unplugged it from AC, played a few more tracks and then shut it down. Next morning battery was down again. So I kept experimenting a few days in a row: charged it completely, played a few tracks, shut it down... and next morning all from the beginning again. I also tried continuous playing on battery, after it was fully charged - the playing time is also decreased.
    I guess, my battery is damaged (or some settings on my player are wrong? - which seems unlikely to me). So how can I get the battery replacement? Or can I use some other type of battery? If so, what should I know when choosing the other battery?
    Many thanks,
    jetlag

    SSR, your advice was helpful - I was able to access rescue mode. Before that, I thought of this operation as of "press C while holding Ctrl..." - I always released play/stop button after sticking the reset button, but still too quickly, and then player started in normal mode. It appears, that one should not release play/stop still for a few seconds - until the rescue menu appears. Maybe it would be good to emphasize this moment (not releasing too quickly play/stop after sticking reset) in Catherina's instructions about accessing rescue mode?
    But this did not solve my problem!
    I charged the battery fully, upgraded the firmware to the latest, and did cleanup. The player rebuilt my library. I played two tracks and turned the player off. After 2 hours, turned it on - battery was drained off again.
    Then I charged the battery again, removed the battery and put aside. After 24 hours reseated battery, turned the player on - the battery proudly showed all three bars! Then played one track and turned the player off, and after 3 hours turned on. The battery remained with one bar only. And after 8 hours, it was, of course, empty...
    So oh, what can I do? My player is more than one year, so out of warranty. And have no idea, who could repair it here in Lithuania, anyway.
    Should I buy Xtra with 30 Gb (cheapest option), and then do harddisc transplantation, to save my 35 Gb of music? (Don't tell me about backups - almost all my music is also on CDs, or on my PC - it just was too long and tedious process, to upload all that to the player, and then rename and organize tracks there...)

  • Elements of the menu in " DHTML Menu with Sublist 2 " too quickly disappear

    Elements of the menu in " DHTML Menu with Sublist 2 " too quickly disappear at navigation.
    Where is better to insert a delay? Give an example a code.

    Hello,
    Can you put an example up on apex.oracle.com. The should act like a normal desktop application menu they are visible till you click somewhere else in the page.
    If you are seeing something else then there is an issue. The built in menu's do not have a delay option in them , where you click and it disappear 2 seconds later, though I'm not sure why someone would want that.
    Carl

  • When i try to export my videos using quick time conversion FCE exits out on me. why does it do that?

    When i try to export my videos using quick time conversion FCE exits out on me. why does it do that?

    Does it always happen at the same time during the export?
    Can you play through the entire Sequence in FCE without any problems?
    What are your Sequence settings in FCE>
    Have you rendered fully prior to exporting?
    Which export settings did you use?
    -DH

  • Final cut pro : Export failed - File too large

    Hello
    I'm trying to export a project in FCP 10.0.5.
    It seems to work but when it reaches 45% the export stops and here's the message :
    Export failed : file too large ...
    Can anyone help me please?
    Thank you,
    Fred

    The file size is about right but your sampling rate is wrong.
    44.1 kHz is CD Audio standard. Digital video uses 48 kHz -you can use QuickTime Player to resample:
    File > Export > Sound to AIFF. Click Options and then *Audio Settings* to change the sampling rate.

  • Best Strategy for Exporting Fireworks into Dreamweaver

    I created a navigation bar in Fireworks and now I want to export it into Dreamweaver.
    So I Went to Edit->Copy HTML Code (hotkey for this is Ctrl+Alt+C)
    Now, what's the "best choice" from the dialog choices: AIR HTML, Dreamweaver HTML, Generic HTML, GoLive HTML, AIR XHTML, Dreamweaver XHTML, Generic XHTML or GoLive XHTML for a cross browser "professional" website?
    I only tried the "Dreamweaver HTML Option" and itseemed to work nicely in my rookie opinion.
    I think this technique might be at a performance cost to my graphic design or the website speed. So should I use a different strategy for exporting Fireworks to Dreamweaver?  I have the CS5 package so can use any of those programs for support.
    Thanks,

    INHO, the best way to export from Fireworks to Dreamweaver is to first define your site in Dreamweaver, and then export the Fireworks document to the assets folder. Place your cursor when you want the navbar to be on your HTML page and choose Insert > Image Objects > Fireworks HTML.

  • Clicking on Firefox causes my computer to flash a blue screen with some info on it (too quickly to read!) then shuts down the computer and reboots. What causes this?

    blue screen flashes too quickly to read

    Reset the PRAM
    Reinstall the operating system from the dvd (you will not loose your data)

  • MSN Messenger starting too quickly!!!

    As my previous post states, I have just got my new Macpro, and its nice and quick. Infact, the boot up seems to start too quickly. The login, and 'open at login' apps seem to load so soon that the network connection hasn't started yet. I get a 'network diagnosis' messsage that i cancel, and as i try to sign in to MSN again, it works. The internet connection is ADSL via a router wired to left rc45 port when looking from back, and I use static ip internally.
    Any ideas? Could it be related to grey screen with horizontal lines that I get on startup? Cheers.

    Just reinstalled osx (hang up from pc days where I always resinstalled os) hoping that would cure the problem, but it doesn't. I think the problem is that the WindowServer starts before network startup has complete.
    For example:
    Jul 19 20:17:20 paul-williams-computer lookupd[110]: lookupd (version 369.6) starting - Thu Jul 19 20:17:20 2007
    is after
    Jul 19 20:17:07 [53] Server is starting up
    Therefore, all apps starting on login (now skype, msn and ichat) all fail to start up. The router is an Orange router connected via cat5, and was available at all times. I have never seen this on the imac G5 + mac mini g4, so could the network card be slightly slower to be 'recognized' by osx?

  • IPhone 5 : Batteries run out too quickly

    I use iphone4 and 5.All settings and use the same network but batteries run out too quickly iphone5 why happened

    What are you doing with the phones?
    What apps do you use on a daily basis?
    The iPhone was designed to work for a whole workday...
    Are you  streaming video/music over 3G?
    Using maps?
    Full screen brightness/working outside?
    Once we know what you do, then we can advise on battery tips

  • The bookmarks list disappear too quickly to choose one

    the bookmarks list disappears too quickly. i do not have the time to select one. this is a new problement i didnot have before.

    Hello Bergeret.
    I'm guessing any menu will disappear too quickly too, and that this isn't just about the bookmarks menu.
    In any case, it's possible that you are having a problem with some Firefox add-on that is hindering your Firefox's normal behavior. Have you tried disabling all add-ons (just to check), to see if Firefox goes back to normal?
    Whenever you have a problem with Firefox, whatever it is, you should make sure it's not caused by one (or more than one) of your installed add-ons, be it an extension, a theme or a plugin. To do that easily and cleanly, run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe mode] (don't forget to select ''Disable all add-ons'' when you start safe mode). If the problem disappears, you know it's from an add-on. Disable them all in normal mode, and enable them one at a time until you find the source of the problem. See [http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes this article] for information about troubleshooting extensions and theme and [https://support.mozilla.com/en-US/kb/Troubleshooting+plugins this one] for plugins.
    If you need support for one of your add-ons, you'll have to contact its author.

  • Songs are Imported Too Quickly

    Just got a new external 40X CD-RW drive for my laptop. Tried importing an audio CD. It imported too quickly. It get the tag info, but not the music and, as a result, won't play. Anyway to control this in iTunes?
    Thanks,
    -B

    hmmmmm. okay, do the songs import properly if your switch error correction off? for instructions, see:
    You can't import or play music from an audio CD in iTunes for Windows

  • Network Access dialog box keeps popping up too quickly to click

    Lately, Compressor (or maybe Batch Monitor) has been causing this problem:
    While a batch is compressing, a dialog box pops up on the screen for a fraction of a second, way too quickly to read it or click on it. I see "Deny" and "Allow" buttons, so I am guessing it's a dialog box asking about network access.
    I found that it pops up at the same time interval I set in Batch Monitor's prefs for updating.
    I tried trashing Compressor's prefs and restarting it.
    The frustrating thing about this problem is that it interrupts anything else I'm doing. It interrupts typing, or a mouse drag. The only workaround I've found, so far, is to not run Batch Monitor at all.
    I'd reinstall, but that'll take days because I have to track down someone in the company who keeps the install media under lock and key. I'm hoping you know of a way to solve this... please? A search of this forum turned up nothing, so far, but I saw a user posted about this problem on another site... and the solution suggested there didn't work for me (not sure it worked for him, either).

    I was having the same problem and noticed that while hovering over a menu item, the popping box stopped popping up. I of course couldn't keep my mouse hovering over a menu item forever and do anything else, but luckily I tried selecting "About Compressor" from the menu and that stopped the box from popping up as well and let me go on to other applications. As long as you don't click the About Compressor box off the screen, the popping box problem is solved, at least for me it is working...
    I hope this helps you...

Maybe you are looking for

  • Creative Cloud Packager fails when downloading Media Encoder 7.2.2 update

    Hi all, I am wondering if anyone else is seeing this. I am attempting to use CCP 1.4 (Macintosh platform) to build a package for deployment to the Macs in our department. It is failing, specifically, when trying to download the Adobe Media Encoder 7.

  • How to capture the message recived to the soap server from client -onMessag

    Hi, I want to send JAXM message from client to server and In server print the message to a text file. My client SOAPConnectionFactory scf = SOAPConnectionFactory.newInstance(); SOAPConnection con = scf.createConnection(); MessageFactory mf = MessageF

  • Can't access FB page on MacBook pro or on iPhone5

    I haven't been able to view the FB page for two days now. I keep getting this message; This webpage is not available. When I click on the "more" button I read the following: Google Chrome could not load the webpage because www.facebook.com took too l

  • I Need to Reinstall iWork (specifically Pages) but cannot find Install Disc.

    I had the most recent version of Pages, but bought it on disc before the App Store came around.  Now I need to reinstall and I cannot find the original disc. The App Store does not recognize that I own it. Do I have any options to reinstall or am I d

  • Smartview: HSSetValue with VLookup

    Hi, I have a sheet with some HSSetValue formulas. The link for the values is a cell with VLookup formulas. If I want to submit the data, the following error occures: #Error run forumlas interrrupted If I link to a cell with the same values (but inser