Do .swf animations work when you build a new folio?

I added a few animations to my pages and they don't see to work during the desktop preview. Can anyone shed some light on this?

If you're committed to using the .swf files, check out Wallaby. It is a flash to HTML5 converter. It's not perfect but it's a workable workaround.
http://labs.adobe.com/technologies/wallaby/

Similar Messages

  • How do you display a swf video / videos when you mouse over

    How do you display a swf video / videos when you mouse over, It'll be something like a pop up but just that it doesn't open in another windows but within the same window and will be like a pop up roll over image.

    Thank you for the reply.
    I've been putzing around with it and came across the 'SetEventHandler' object and thought I'd try and make that one work.
    Here's what I've got so far.
           <mx:SetEventHandler target="{turnAroundMovie}" name="handleMovieClip" handler="stopMovie()"/>
    And then my fuction.
       <mx:Script>
            <![CDATA[
                private function stopMovie():void{
                    turnAroundMovie.stop(); <!-- here's where I'm getting stuck -->
            ]]>
        </mx:Script>
    My first instinct was the simple stop(), but that didn't fly.  I even added a stopMovie frame in my .swf and tried a gotoAndStop('stopMovie'); but that didn't fly either.  And that's kind of where I'm stuck at.

  • Error "Licensing for this product has stopped working" when you launch Acrobat 9

    Hi,
    I'm part of service desk and my company has several thousand users of Acrobat. There has been strange issues reported since upgrading from 7.0.5 to 9.1 and a lot of them are uhappy. The latest issue is users started to receive the following error,
    Error "Licensing for this product has stopped working" when you launch Acrobat 9 or Adobe Creative Suite 4 products. The link http://kb2.adobe.com/cps/405/kb405970.html#ErrorCodes has solution, but i tried everything given for 147-178, and nothing works. The users are highly frustrated. Any other possibilities? one collegue claims running simple reg cleaner could solve this issue.

    Wow,
    I went through a "font crisis" on my MacBook about two weeks ago, and I reinstalled Snow Leopard, then restored everything from Time Machine backup. Everything but Office 2008 and CS4 was able to run from the restore, because there were preferences for both that wouldn't copy back to my Library (permissions).
    I reinstalled both from the "original media" (dmg's)  with my Time Machine and 2 other external HDs connected and mounted. I had no problems with either. In fact since I was re-installing from dmg's stored on my Time Machine drive, I had to have it connected to do this. Installing Office and CS4 from the dmg's took all of twenty minutes for both with no errors at all.
    I'm glad you got everything taken care of, but anectdotal evidence tells me CS4 can be reinstalled with external drives connected and mounted.

  • Which buttons dont work when you run windows xp

    the keyboard for a mac and a pc are kinda different. are there ne buttons that dont work when you run xp with bootcamp?

    Only one I can think of (if you're using the latest version of Boot Camp) is the "delete" key won't act as "delete" (such as in ctrl + alt + delete) under Windows. Other than that, every other key should function correctly. (The Apple/CMD key will work as the "Windows key." And the "option" key will be "alt."

  • Why do some apps no work when you plug in car charger?

    why do some apps no work when you plug in car charger?

    Dunno... but if you want need help, provide some details.
    Which apps?  Have you contacted the developer of those apps to ask them?

  • Does FaceTime still work when you're browsing the Internet simultaneously

    Does FaceTime still work when you're browsing the Internet simultaneously on your phone?

    triptifromsan francisco wrote:
    Does FaceTime still work when you're browsing the Internet simultaneously on your phone?
    iOS: Using FaceTime - Apple Support
    in my experience with facetime, you can't browse other apps or features while on a facetime video call.

  • All tool icons are gone from safari and apple mail tool bars. Tool tips works when you hover over the box with the missing icons. Macbook pro  OS

    all tool icons are gone from safari and apple mail tool bars. Tool tips works when you hover over the box with the missing icons. Macbook pro  OS X 10.8.4
    The boxes that the icons were in are still there, but no icons

    Hello jo90733,
    I would recommend reinstalling Mountain Lion to replace the missing/damaged components of these applications. While the process shouldn't affect any data (images, music, etc) you have on the system, it's always a good idea to have a backup in place prior to reinstalling.
    OS X Mountain Lion: Back up your Mac
    http://support.apple.com/kb/PH11371
    OS X Mountain Lion: Reinstall OS X
    http://support.apple.com/kb/PH10763
    Important: You need to be connected to the Internet to reinstall OS X.
    Choose Apple menu > Restart. Once your Mac restarts (and the gray screen appears), hold down the Command (⌘) and R keys.
    If you’re not connected to the Internet, choose a network from the Wi-Fi menu (in the top-right corner of the screen).
    Select Reinstall OS X, and then click Continue.
    Follow the onscreen instructions. In the pane where you select a disk, select your current OS X disk (in most cases, it is the only one available).
    To start the installation, click Install.
    Cheers,
    Allen

  • TS4036 I have moved from one company to another and they both use iphones I backed my phone up before it was shut down I tried to retrieve contacts from my PC it did not work will it work when I get my new iphone?

    I have moved from one company to another and they both use iphones I backed my phone up before it was shut down I tried to retrieve contacts from my PC it did not work will it work when I get my new iphone?

    I updated my iPhone onto my friend's MacBook
    Why would you do that, and not on your own computer?  See the hassle it caused you?
    can he just email me the folder
    Backup files are too big to email.  Use FTP, DropBox, etc...
    how do I then put all that data back into my current phone from the new computer?
    How to restore iPhone:  http://lmgtfy.com/?q=how+to+restore+iphone

  • What happens to objects when you redeclare a new object?

    ... and is there a more proper way of "deleting" them from memory, or is it a case of waiting until the garbage collector in java sweeps them up?
    i.e.
    private CustomObjectType myObject;
    public final void myMethod() {
    myObject = new CustomObjectType("I am the first object");
    // do some temporary work with myObject
    /// now I need to do more work with another temporary object, so just replace the "link"
    myObject = new CustomObjectType("I am a second object");
    Is it better to declare new variables to hold this second object?
    Should a person declare the object to be null when no longer required?
    Do I ever need to worry about this, does the garbage collector sort out references for me?
    (Please go easy, still learning and don't really need to know this right now but I'm curious! :)

    What happens to objects when you redeclare a new object?If you go:
    Dog myDog = new Dog();
    and then go:
    Dog myDog = new Dog();
    you are replacing the first reference to Dog() with another one. I don't think it would make sense to do this because it is redundant.
    But if you go:
    static Dog myDog = new Dog();
    and then go:
    static Dog myDog = new Dog();
    then then second one will be ignored because the first one already assigned Dog() to myDog.. so the second one won't replace the first one - it will just be ignored or generate an error.
    is there a more proper way of "deleting" them from memory, or is it a case of waiting until the garbage collector in java sweeps them up?In c and c++ you have to think about when the life of an object ends and destroy the object to prevent a memory leak. But in Java the garbage collector takes this task on if a certain amount of memory is used. If you don't use a lot of memory the gc won't bother and the objects will be destroyed when you exit the program.
    You can use:
    finalize(){
    // insert code to be executed before the gc cleans up
    and if you call System.gc() (which you probably won't need to do) then the code in the finalize() method will run first e.g. to erase a picture from the screen before collecting the object.
    private CustomObjectType myObject;public final void myMethod() {
    myObject = new CustomObjectType("I am the first object");
    // do some temporary work with myObject
    /// now I need to do more work with another temporary object, so just replace the "link"
    myObject = new CustomObjectType("I am a second object");
    you could do:
    public class CustomObjectType{
        //this constructs an instance of the class using a string of your choice
        CustomObjectType(String str) {
            System.out.println(str);
        static void main(String[] args){
            CustomObjectType myObject = new CustomObjectType("I am the first object");//  This sends the constructor the string you want it to print
            CustomObjectType myObject2 = new CustomObjectType("I am the second object");//  This sends the constructor the string you want it to print
    }Bruce eckel wrote Thinking in Java 4th edition considered to be the best book on Java because of how much depth he goes into, although some recommend you should have atleast basic programming knowledge and a committment to learn to get through the book.
    I just started it and it helps a lot. Maybe u could borrow it from the library.. good luck!

  • When you open a new browser tab, underneath the box to type in what you are looking for is the recently visited list. I want to disable or delete this list...how do I get rid of this list???

    When you open a new browser tab, underneath the box to type in what you are looking for is the recently visited list. I want to disable or delete this list...how do I get rid of this list???

    The drop-down list displays items from your History and/or Bookmarks.
    You can control what shows (or nothing at all): Options > Privacy, "Location Bar" section. Options are:
    *History and Bookmarks
    *History
    *Bookmarks
    *Nothing
    See --> https://support.mozilla.com/en-US/kb/Options%20window%20-%20Privacy%20panel
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • How to do that when you open a new tab to appear like the start page after opening the browser?

    How to do that when you open a new tab to appear like the start page after opening the browser?

    https://addons.mozilla.org/en-US/firefox/addon/newtaburl/
    Never used it myself, so I'm not sure if you can set to about:home or not. You'll have to give it a try.

  • Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks

    Hello I have encounted a problem with Photoshop. Normally when you start a new documant, you are given the options to have A4, A3, ect page set ups. These inbuilt page set ups seem to have disapeared, does anyone please know how to fix this? Many thanks Ben  [email protected]

    Hello Trevor
    Thanks for your message. You can custom set pages but there are no preset of page sizes like A4, A3, ect. I cannot click the size preference, nothing comes up
    Ben

  • I am looking into Buying Retail a New Blackberry Q10. Doing this to avoid having to Give up my old Data Plan. Have read that when you activate a new Phone it forces you to pick a new Plan. Is this True? and How to I avoid this? 20 Year Verizon Client

    I am looking into Buying Retail a New Blackberry Q10. Doing this to avoid having to Give up my old Data Plan. Have read that when you activate a new Phone it forces you to pick a new Plan. Is this True? and How to I avoid this? Any other advise in this matter would be greatly appreciated.
    20 Year Plus Verizon Client

    The only "unlimited" plan I can think of where this would not apply is the old Connect plan for multimedia/basic phones.  That unlimited data, on devices such as the LG Voyager, EnvTouch, and other "multimedia" devices is  not the same.
    If you currently have an individual $29.99 unlimited data plan with a 3G Smartphone, then you can buy a BBQ10 retail and activate it with the same data plan and keep the unlimited.

  • Can you still access Adobe PDF SAVED FILES WHEN YOU GET A NEW COMPUTER

    Can you still access Adobe PDF SAVED FILES WHEN YOU GET A NEW COMPUTER ? Do you loose the files you have saved on you old computer when you get another computer?

    I may not be clear on what you are asking here but I'll try an answer anyway since that's the type of guy I am.
    If you have PDF files on your old computer, you will need to transfer them to your new computer. You can use a flash drive or CD if needed.
    But again, I think I'm not getting what you are really wanting to know. If I'm not, can you give us some more details?

  • Downloaded Amazing Spider-Man app but keeps on closing when you press a new game.

    I have downloaded the app Amazing Spider man which has cost me £4.99. The problem we got when you press for new game it come straight of it and goes back to the main home screen. I have uninstalled it and also have done a restore on the iPad this is still happening.

    Contact the app vendor

Maybe you are looking for