HTML5 is not on line but DOES not play in offline mode

Hi, I built an html5/JS animation (using Flash CS6) and put it online to test it. This animation plays perfectly in all browsers except Firefox.

A weird thing though, if I right click on the html offline file and choose "open with > Firefox" he plays the animation, but a little bit slower it's supposed to.

Why I can't get the version online to work? I need this animation to work on a Web site.

Link: http://www.access.gr/attiki/test1.html

Thank you! Read the other discussions was really helpful and solved the problem. The solution was to upgrade the .js scripts to a version more recent/more later. THIS SIMPLE!

Latest versions currently:

"< script src ="http://code.createjs.com/easeljs-0.7.1.min.js"> < / script >.
"< script src ="http://code.createjs.com/tweenjs-0.5.1.min.js"> < / script >.
"< script src ="http://code.createjs.com/movieclip-0.7.1.min.js"> < / script >.
"< script src ="http://code.createjs.com/preloadjs-0.4.1.min.js"> < / script >.
"< script src ="http://code.createjs.com/soundjs-0.5.2.min.js"> < / script >.

Thank you very much

Tags: Firefox

Similar Questions

  • My downloaded music will not play in offline mode. Help!

    MY music, I bought/downloaded no longer plays in offline mode. I hate having to turn my data to play my music, is anyway to fix this?

    See the article below, it can help you!

    Add music catalog to Apple's music to your library on your iPhone, iPad, iPod touch, Mac, or PC - Apple Support

  • Bug which means video event HTML5 will not play if you are using a skin

    There is a bug, easily reproducible, which prevents the HTML5 video work in certain circumstances.  I hope that someone can think of a workaround I can't tell my client that Captivate doesn't support video!  To see the problem:

    (1) start a new project of 7 Captivate

    (2) add a video of the event to the first page

    (3) add a skin to the video - I used clearSkin3 but I do not think that makes all the difference

    4) go to project-> skin Editor

    (5) uncheck the read command

    (6) either publish to HTML5 or HTML5 Preview in browser

    You will see the video only plays not - the reason is Captivate JavaScript code throws an exception: object doesn't support property or method 'modifyAlternativeAccessibleText' - and then not play or display the playback controls.

    If I put the video to have no skin (so play with no. controls at all) then it works, so it's not a problem of encoding or anything like that.

    If anyone can think of a solution where I can play the video of the event in HTML5 without control of playback from captivate project (but with the video) I would be very grateful!

    Thank you

    cp.modifyAlternativeAccessibleText () is a function that is not in the project files. First of all, I have commented the function call (8 places) and my video worked, the I have uncommented and added the function in the CPM.js file and it worked.

    Add this at the end of the file CPM.js and the magic:

    cp.modifyAlternativeAccessibleText = function () {}

    It is an empty function

    };

    I might add that 13 029 lines of code for a screen with a video about it is a little exaggerated as. See how you can achieve the same thing in a real page of HTML5 in a few lines inside the body tag. With zero javascript.

    He actually had 349 characters (562 249 in the CPM.js) total to do exactly the same thing with the same background of captivate. If we exclude the video file which is the same, my account was 5 k, CP was 7.08 MB.

  • Length overflow - the line but does not see why!

    Hi all

    I have a script, plsql, I'm working on the script RMAN to copy image to the data files, controlfiles and archive recovery logs.

    When I run the script, I get an error (see below), but I don't see where the lines in the output are greater than 255 characters.

    If I divide the script into two separate loops they don't work very well, but together, no chance.

    Error message:

    declare
    *
    ERROR on line 1:
    ORA-20000: ORU-10028: line length overflow, the limit of 255 characters per line
    ORA-06512: at "SYS." DBMS_OUTPUT", line 35
    ORA-06512: at "SYS." DBMS_OUTPUT", line 84
    ORA-06512: at line 61 level

    Script:

    Set serveroutput on encapsulated format
    Set feedback off
    set linesize 115

    coil arch_copy.rcv

    declare

    BOOLEAN firsttime;

    cursor df is
    Select
    file No.,
    substr(Name,29,50) name
    Of
    v$ datafile;
    CF cursor is
    Select
    substr(Name,27,50) name
    Of
    v$ controlfile;
    Al cursor is
    Select
    substr(a.Name,32,50) name,
    B.SID road,
    a.Status
    Of
    v$ archived_log a,.
    v$ database d
    where
    a.dest_id = 1
    and
    a.Archived = 'YES '.
    and
    a.completion_time > sysdate-1
    and
    B.SID not like '% imagecopy % '.
    and
    a.activation # d.activation = #.
    and
    a.Status = "A";

    BEGIN
    DBMS_OUTPUT. ENABLE (2000);
    DBMS_OUTPUT. Put_line ('run');
    DBMS_OUTPUT. PUT_LINE('{');
    DBMS_OUTPUT. PUT_LINE (' ' STOP IMMEDIATELY ');
    DBMS_OUTPUT. PUT_LINE ('STARTUP MOUNT');
    DBMS_OUTPUT. PUT_LINE ('COPY');
    for dfbkup in df
    loop
    dbms_output.put_line (' DATAFILE ' | dfbkup.file #|)
    ' TO ''' || ' / u20/oraflash/ORCL1/imagecopy/datafile /' | dfbkup.name | " «, ») ;
    end loop;
    for cfbkup in CF
    loop
    dbms_output.put (' CURRENT CONTROLFILE ' |) ' TO ''' || ' / u20/oraflash/ORCL1/imagecopy/controlfile /' |
    cfbkup.name | " ') ;
    end loop;
    Firsttime: = true;
    for albkup in al
    loop
    in case contrary firsttime
    then
    dbms_output.put_line(',');
    end if;
    dbms_output.put (' ARCHIVELOG "' | albkup.path |) ''' TO ''' ||
    ' / u20/oraflash/ORCL1/imagecopy/archivelog /' |
    albkup.name | " ') ;
    Firsttime: = false;
    end loop;
    DBMS_OUTPUT. PUT_LINE(';');
    DBMS_OUTPUT. PUT_LINE ("ALTER DATABASE OPEN ;"); ")
    DBMS_OUTPUT. PUT_LINE('}');
    end;
    /

    spool off

    set linesize 80
    Set of feedback on
    Set serveroutput off

    What is

    SQL> declare
      2     cursor al
      3     is
      4     select 'x' path
      5          , 'y' name
      6          , count(*) over () cnt
      7       from all_objects
      8      where rownum <= 10;
      9  begin
     10     for albkup in al
     11     loop
     12        dbms_output.put_line(' ARCHIVELOG ''' || albkup.path || ''' TO ''' ||
     13           '/u20/oraflash/ORCL1/imagecopy/archivelog/' ||
     14           albkup.name ||''''||case when al%rowcount = albkup.cnt then ';' else ',' end );
     15     end loop;
     16  end;
     17  /
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y',
     ARCHIVELOG 'x' TO '/u20/oraflash/ORCL1/imagecopy/archivelog/y';
    
    PL/SQL procedure successfully completed.
    
  • When I import a gif animated in Windows Live Movie maker, the animation is displayed on the time line but does not play. How to use gifs animated in movie maker?

    I need help

    Windows Live Movie Maker does not support animated .gif files.

    The following article is maybe worth a visit:

    Windows Live Movie Maker - Animated GIFs

    If you have an older version of Movie Maker you can import the
    .gif to the file and save it as a .wmv file. Then use the .wmv in WLMM.

    And the free software IrfanView can extract the images of an animation
    file .gif and you can import them into WLMM individually.

    Open a .gif animated in IrfanView and go... Options / extract all
    Frames... Choose a destination directory, choose a format, left click
    the Start button.

  • link shows in the status line, but does not load new destination

    On www.yawar.nl , a google map appears containing the Red markers. Open a popup, click on a marker. The first line of such a popup is a link. By clicking on this link has no effect, except showing the destination in the status bar. Howerver right click opens a new tab or a window with the destination of the link.

    The problem is a Javascript conflict (probably several versions of jQuery) on the site.

  • Motion interpolation works very well in the time line, but does not work on preview of the scene. Any help?

    I'm the new flash CS4. (Updated for Flash CS 5 but that gives other problems... so Meanwhile I continue with CS4)

    I created the Web page. In the web page that I created with Motion editor motion tween and once present in preview, it works fine. Return to the scene and to preview the result show the initial position of the motion tween, but he don't move and behave in the way that it shoud.

    What is missing? Where I'm going wrong?

    Thanks for any suggestions

    Yve

    Thanks, glad I could help. You can mark as "answered".

  • Captivate 7, video HTML5 will not play

    Hello forum,.

    I'm doing a Captivate project with video in it.

    I tried to use MP4, FLV and F4V but not video files will appear in google chrome.

    The project plays just without showing anything, but in flash, it works normally.

    Thanks in advance,

    Paul

    If you are talking about the video not working do not out of HTML5, download your content published on a web server to test and make sure that the video files of your specific MIME type helped the web administrator.  Don't bother trying to test your local drive HTML5 content.  Always use a web server.

  • HP 1350 printer peripheral will not stay in offline mode. Problems with the Wi - Fi driver

    Hi I have a Dell desktop with printer HP 1500 computer.  After printing several documents, the printer has gone offline.  Troubleshooting indicates the problem with the Wi - Fi driver.  The printer is connected to the computer makes a Wi - Fi connection has to do with it?  I have add a portable Wi - Fi system recently.

    Hi, Mt48,

    Is the printer a 1350 aio or deskjet 1500?  You have listed two different models.

    Windows operating system?

    To resolve this problem, perform the following steps:
    1. Right-click on the my computer icon and choose manage, then click Design Manager.
      In the currency Manager there will be the USB root hubs (there may be several USB root hubs) perform the following steps for all root hubs:
    2. Right click on the USB root hub and go to properties, then the power management and uncheck 'Allow the computer to turn off this legacy to save energy' in the Design Manager.

    http://h20000.www2.HP.com/bizsupport/TechSupport/document.jsp?lang=en&cc=UK&TaskID=110&prodSeriesId=439153&prodTypeId=18972&ObjectID=c01475742

    Monofunctional and multifunction printers - HP printer is offline message appears on the computer and the HP product does not print

    http://h20000.www2.HP.com/bizsupport/TechSupport/document.jsp?objectID=c02221706&lang=en&cc=us&TaskID=130&ContentType=SupportFAQ&prodSeriesId=306884&prodTypeId=18972

    Look for your version of Windows and select printing HP and the Scan Doctor - this is a diagnostic utility

    http://h20000.www2.HP.com/bizsupport/TechSupport/DriverDownload.jsp?prodNameId=306889&lang=en&cc=us&TaskID=135&prodTypeId=18972&prodSeriesId=306884

  • May not work in offline mode

    Hello world

    For several weeks, I can not start my programs unless I sing in the creative cloud... and I love doing stuff offline without distractions,... which is the problem? Please find attached an image. Thank you in advance.

    Best regards

    Luis

    Captura de pantalla 4.png

    Hi Luis,.

    Please see the advanced solutions to errors in connection with Adobe Creative Cloud and Creative Suite applications

    That the system requirements | Adobe Creative Cloud say, the Internet connection is required to activate other applications they will work as trial only.

    I hope that helps!

    Kind regards

    Sheena

  • Will not play in edit mode

    At the Audition 1.5 multitrack view play very well and all functions are usable, however when I try to change a waveform, stop, play, pause, play cursor and play in a loop are all shaded out and unusable. I tried pressing the SPACEBAR as well, but nothing happens. In addition, nothing will preview in the Organizer.

    Nothing like this happened to me before, and the program worked well for hours today and all of a sudden did.

    Ensure that the Audio driver by default exit and paths are selected as part of hardware Audio/Edit.  I think I've seen intoxicated at the hearing transport controls cannot find a valid path / driver for audio - and you must select separately in Multirack and Edit view.

    Even if you have not knowingly changed these settings, Vista and Win7 seem to be able to do weird things.

    Bob

  • His record game will not play in safe mode

    There is no audio service available when you run the computer in safe mode

    This is because it is not supposed to be. The drivers load in safe mode.

  • 8500Aplus, works perfectly with the PC, but it still appears in offline mode with mac on the same wifi network

    I downloaded the latest drivers, more than once. Installation, set up and configuration gain of "successful" messages When I then try to print I get always "printer offline" message on Mac Book Pro running OS X 10.6. Prints beautifully PC running Vista immediately after and network check lists all the devices. Help!

    Looks like there may be a problem with the Mac printing system since it works from Windows System.  It is also not as if there is a network communication problem as it works from Windows system and a network issue would be present on both systems.

    The Mac printing system could have a problem and may need a reset.

    Follow the steps exactly as stated in Mac OS x: how to reset the printing system.

    Once this is done, click on printer HP v.2.9 OS X drivers and install this driver suite that Apple has included for OS X 10.6.

    This will reset the Mac printing system and install the latest drivers having Apple for the platform OS X 10.6.

  • Trackpad works is not in offline mode

    Original title: trackpad function

    I'm running win7 64 bit ultimate laptop. Recently, I found that the trackpad does not work in offline mode. However it works when connected using net

    Hello

    1. What is the brand and model of your laptop?
    2. What do you mean by "trackpad does not work in offline mode?
    3. have you made changes on the computer before this problem?

    Method 1:
    You try to run the Fixit.
    Hardware devices do not work or are not detected in Windows
    http://support.Microsoft.com/mats/hardware_device_problems/

     
     Method 2:
    This could happen if the drivers are corrupt or needs an update.

    I suggest that you visit the laptop manufacturer site download and install the latest touchpad drivers, check if it works.
    For more information visit http://windows.microsoft.com/en-us/windows7/Update-a-driver-for-hardware-that-isn ' t-work properly

     
    It will be useful.
  • I use creative cloud of Adobe Premiere Pro and it does not allow me to drag. In the line of time, only the audio files of the video MXF files. Plays in the video source, but does not allow me to change on the time line with the. MXF files.

    I use creative cloud of Adobe Premiere Pro and it does not allow me to drag. In the line of time, only the audio files of the video MXF files. Video plays in the source window, but does not to drag me and thenedit on the time line with the. MXF files. audio will slide to the time line, but not the video. Interestingly, not later than end of December 2015 it allowed me to change with .mxf files, but no, it won't. Any help out there?

    Neil, get it fixed, I do not have the video channels set correctly on the left

    side of the line of the time. Learn the new adobe; Thank you

    Monday, February 15, 2016 13:20, R Neil Haugen [email protected]>

Maybe you are looking for

  • TimeMachine and two Ethernet interfaces

    OS version 6.4.2 OS X 10.11.3 (El Cap). That ReadyNAS has two ethernet interfaces, which I had connected without adherence to the network. All Mac on the network would be fix and update the sparsebundle on the ReadyNAS for some time (two days for exa

  • How can I configure my backlight to laptop to stay long?

    I had the problem to have my laptop systematically cutting after so many minutes when I'm reading or type.when it is in stall mode, I have to keep tapping my mouse to bring the screen back up.if - does anyone know how to set my screen backlight to st

  • Unable to complete format of DVD

    I have Vista Home Premium (32-bit version) on my laptop (Packard Bell EasyNote S4947).  The CD-ROM/DVD-ROM drive is Matshita UJ - 850D ATA Device (DVD +/-RW).  When I try to burn files to a DVD (+ R and + RW), I get a message error "Windows could not

  • Whenever I open my computer I get this message: "explorer.exe has stopped working".

    original title: explorer.exe has stopped working whenever I try to open my computer it tells me that windows Explorer has stopped working, everything else works but when I go into safe mode it let me go in my computer and I checked for viruses and th

  • How to change the name of my application

    Hello Basically, I started my application as HelloWorld. Using eclipse. But since then Ive has obviously changed the name of it and edited blackberry_app_descriptor.xml to change the title. What I don't understand is why when I connect it, it refers