6 issue of HTML 5 with scalable HTML5 of Captivate

Hello

I am using Captivate 6, I have a very modest project of only about 10 slides, but when I publish this 'evolutionary content HTML' all disappear it forms, and some slides do not work.

However, when I take it off "a scalable content HTML5" it works very well. My question is, because it will be used on different tablets of all sizes, it is difficult to choose the size of 'apple ipad' project when some people have android tablets because it does not fit on the screen!

Can I do to make sure that it works for all sizes of tablets 'evolutionary' content does not work!

Thank you!

Hannah,

Could you please all the slides and paste them on a new blank project and see if that helps?

I tested successfully with some smartshapes and it worked fine.

Thank you!

Tags: Adobe Captivate

Similar Questions

  • Advertising with BB10 HTML5 + WebWorks service does not work

    I'm trying to integrate the advertising service of Blackberry with BB10 HTML5 + WebWorks. Is this currently supported?

    https://developer.BlackBerry.com/HTML5/APIs/BlackBerry.advertising.banner.html

    I tried implementing the following examples above but no luck.

    Thank you

    Govind.

    The Blackberry advertising service is not currently available for Blackberry 10 gold Webworks SDK.

  • I can't install my AD018640672 order number because you ask for the previous issue. Adobe came with my computer I don't have that. Can you help me!

    I can't install my AD018640672 order number because you ask for the previous issue. Adobe came with my computer I don't have that. Can you help me!

    Hi bobj39626549,

    We could certainly help you.

    If she asks for the previous version number, then you could acquire a version upgrade.

    You must purchase the full Acrobat version so that it can be installed and activated with the serial key.

    Hope that helps.

    Kind regards

    Ana Maria

  • How can I use an external HTML form with a file upload in my page of MUSE?

    How can I use an external HTML form with a file upload in my page of MUSE? I know I can insert an external form, but how do I create a link to my email

    Yes, in most cases. If it is not in your actual embed code, you will need to be added to the script that uses the code. There are literally hundreds of form manages the codes out there on the web, it would be impossible to tell you exactly where it needs to be added. Your best option is to use a third party such as JotForms or WooForms shape provider and use the third Muse Widgets for these services.

  • How can I put HTML codes with muse cc? I have to put a watch on my site, I only codes HTML

    How can I put HTML codes with muse cc? I have to put a watch on my site, I only codes HTML

    Hi Antonio,.

    You can use the object > option to insert HTML code to add your code to the page.

    Kind regards

    Aish

  • How to make a canvas scalable HTML5 document?

    Don't get me wrong! I'm not asking how you can scale the project! Nor am I asking how can I do a responsive project!

    The issue is subject after the project is exported and seen how content designed on a scale with the browser window.

    It is also something pretty easy to do on board animate. You could just flip through the button beside where it says px % for size options and position.

    Even with captivate you can export html scalable code. Yet once I speak not a sensitive project. I want to talk about evolving html that resizes with the display window.

    How is it that something as basic as that is not included by default?

    Is it perhaps a code snippet, Miss me that I could drag it to the first frame of my calendar to make the scene and scalable content?

    There are already a few threads on this:

    A scale of Composition Html how to adapt the browser?

    How can I make the output size of "Web" animate CC to adapt in an HTML page?

  • Problem with MusePen HTML5 Video - Widget

    Hello dear community and great team of Adobe Muse,.

    Some people have a problem, that they cannot see the background video of HTML5-Widget, which I use - some, too, can see.

    I placed each videoformat inside (*.ogg, *.mp4, *.webm) and also placed an image of the poster to the loading screen.

    The video is on auto run.

    You know the problem and why is he here?

    I really like using the MusePen Widget, because it's the only one, that I can fix it in position and things - also I can make invisible for mobile breakpoints, which does not work with the other HTML5 video-Widgets.

    Here's the site I'm talking about: www.cmnt.it

    Would be nice, if someone knows the problem and help me

    Best regards, Felix

    Have you tried to contact the developer of the widget directly for support? Not all widget developers watch these forums, so unless you're extremely lucky and find someone who had the same issue here it can be faster response by contacting the developer directly.

  • SoundJS with Flash HTML5 Canvas - break sound & update the lib?

    I'm looking to do some basic audio control in the Flash timeline, exporting HTML5 canvas.

    On the frame of 10 I am loading/reading a file with:

    audio1 var is createjs. Sound.Play("Sounds/course3_mod1_2.mp3");

    Who plays, but then I can't figure out how to make a pause as the beep several frames later at a briefing of the animation to a timeline. I read that there is a method. pause() methods, as well as chassis 50 that I use:

    AUDIO1.pause ();

    This does not work for me - I must be missing something pretty obvious regarding variables references on the timeline...? In the console of Firefox, I see the JS error:

    ReferenceError: audio1 is undefined.

    If it's important, the process of publication included "0.5.2.min.js", although I do not have the latest version of CA is "0.6.0.min.js". I'm also very curious how I would update my CC Flash (version 20141) to use this latest version of the library compared with older he current attaches to the HTML code. I guess I can (in the publication settings) uncheck the option 'Hosted libraries', and then manually download new libraries and replace them in the folder. But not this crushed with each publication? And what happens if I still want a link to a hosted version the later?

    somascope wrote:

    On the frame of 10 I am loading/reading a file with:

    audio1 var is createjs. Sound.Play("Sounds/course3_mod1_2.mp3");

    Who plays, but then I can't figure out how to make a pause as the beep several frames later at a briefing of the animation to a timeline.

    That cannot possibly work. If it worked, it is no more. The SoundJS, the documentation is very clear that "before you can play a sound, it must be saved.» You need to do something like this:

    // create global alias to main timeline for event handler
    _main = this;
    // wait for sound to preload
    this.stop();
    // assign load event handler
    createjs.Sound.on("fileload", handleLoad);
    // load and register sound
    createjs.Sound.registerSound("mysound.mp3", "soundID");
    // play sound and start timeline playing
    function handleLoad(event) {
        _main.audio1 = createjs.Sound.play("soundID");
        _main.play();
    }
    

    Then, to put in pause/resume, follow these steps:

    this.audio1.paused = true; // pause
    
    this.audio1.paused = false; // resume
    

    Reference: is there a pause() method? · Number #200 · CreateJS/SoundJS · GitHub

    Note that var creates variables that have only the scope of the framework. To the current scope of timeline, you must use this..

    If it's important, the process of publication included "0.5.2.min.js", although I do not have the latest version of CA is "0.6.0.min.js". I'm also very curious how I would update my CC Flash (version 20141) to use this latest version of the library compared with older he current attaches to the HTML code.

    DO NOT do it. Each new version of Flash CC publishes the files that target a specific version of the CreateJS library, so try to cram in a different version will certainly break things. But why you are still using Flash CC 2014? You should be able to upgrade to CC animate.

  • Problem with Youtube html5

    I have Youtube html5 active and when I go to play a video, it is played with most of the times.the html5 flash is always enabled

    Remove flash?
    also in html5 if worked once the automatic video game really is delayed...

    Only a few videos on YouTube have a html5 version, if you go to a video without a html5 version that he will play the Flash version instead. You will need Flash if you want to see all the videos on YouTube.

  • Here's a strange. I have a HTML page with this time a wmv video. It works perfectly from a USB stick or SD card, but does not work when they are copied to the hard drive

    I have an HTML page created with web expression 4. It contains only a wmv video. It works perfectly when it is called from a USB stick or SD card, but does not work when they are copied to the hard drive. The results are the same with IE and Firefox. It don't make no difference if I use Media Player V9 or V11. He has no control on the page Media Player. Video and html files are in the same directory. Here is the code snippet:

    LIFT, DRAG, THRUST and GRAVITY










    If I run it on a machine with Win 7 there is no problem.

    Richard Grosser

    Hi Richard c. Grosser,.

    Your question is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the Microsoft Expression forums.

    http://social.expression.Microsoft.com/forums/en-us/categories

  • Issue of intermittent start with Windows Vista 64-bit

    For some time, I've experienced a problem intermittent start up on my PC - Windows Vista 64-bit, where he spent in front of the screen «Windows is loading...» "to a black screen, but crashes then it and will never progress to the screen with the Windows icon (circle?).  When this happens, I usually try to restart in mode without failure, then stop or do a system restore and it finally starts again.  If it is intermittent, I noticed that it happens almost always if I use the computer for awhile, turn it off, then on again a few minutes later.  Thoughts?

    Your description of the behavior of the computer, I would look to hardware fault as the culprit. The first suspects are overheating and power supply. You can solve yourself or take the machine to a local professional reputable (not a type of BigComputerStore/GeekSquad of the place).

    http://www.elephantboycomputers.com/page2.html#Hardware_Tshoot

    MS - MVP - Elephant Boy computers - don't panic!

  • Communication issues in Windows 7 with the XBOX 360

    I also have the problem of my windows premium 7, refusing to talk to my xbox 360...< not="" the="" controller's..="" it="" talks="" to="" them="" fine="">

    But the Xbox itself on the other side ot the network...

    So please don't tell me to install controller drivers...

    Really do not do...

    Yes, I've read hundreds of times people have asked this very question.

    To always have the microlimp people answer with «just install the controller driver and everything'll be fine...»  You want a pill with this useless response? »

    My very expensive windows 7 gaming machine speaks to everything perfectly. Everything there is certified to work with windows... Nothing is no name made in China...

    And apparently the xbox slim is certified...

    Then why they will not speak to each other...

    The windows updates did not have a pilot.

    I tried the controller driver... It did not help at all...

    So please don't just tell me to install the controller driver...

    And maybe think about why we shouldn't just scrap xbox and get a media center that works?

    Hell I already used my Roku as well as the xbox...

    He and my windows machine 7 talk to each other with happiness...

    Original title: windows 7 driver driver to talk to an xbox 360.  Do not use the controller with a windows machine...

    Hello

    Thanks for the update on the issue. The query you requested is best suited to be posted on the Xbox forum. He is watched by other computing professionals who would be more likely to help you.

    Forum on the Xbox:

    http://forums.Xbox.com/xbox_forums/default.aspx

    Hope this information was useful.

  • Integration with a HTML5 API?

    Hello

    Are there examples of all those who use an API source HTML5 interface user of Cascades?

    You can run HTML5 cascading code by putting your code inside a WebView for component. JavaScript/HTML5/css3 goodness. 

     

    Check out the docs here:

    https://developer.BlackBerry.com/Cascades/reference/bb__cascades__webview.html

  • Need to load the page HTML 5 with SQLite in browserfield Blackberry 6.0

    Hi all

    Currently, I am working on the application in which I use static HTML 5, web page with built in SQLite db. I want to load in blackberry Browserfield 6.0 on offline for page web HTML 5 is placed in the my project package. I have developed the code below, but not able to load. What I'm doing wrong, I'm not able to find. Please let me know if you find something I am doing wrong.

    Private BrowserField _bf2;

    Private BrowserFieldConfig _bfConfig;

    _bfConfig = new BrowserFieldConfig()

    _bfConfig.SetProperty (BrowserFieldConfig.NAVIGATION_MODE, BrowserFieldConfig.NAVIGATION_MODE_POINTER);

    _bfConfig.SetProperty (BrowserFieldConfig.JAVASCRIPT_ENABLED, Boolean.true);

    _bf2 = new BrowserField (_bfConfig);

    InputStream inStream = this.getClass().getResourceAsStream("/demo.html");

    ubyte [] bytes = IOUtilities.streamToBytes (inStream);

    Dim str As String = new String (bytes); _bf2.displayContent (str, "http://localhost");

    Thanks in Advanc

    Demo.HTML is packed into your folder of cod?  If so, you can access it by using "local:///demo.html".

    Take a look at the browserfield2demo included in the SDK Java BlackBerry and BlackBerry JDE for an example.

  • [UN] control HTML checkbox with the attribute

    I am trying to check and uncheck aby adding and removing the checked = 'checked' attribute using javascript (jQuery).  Does not work; nothing happens. It works very well in desktop browsers, well.  Adding and deleting disabled = "disabled" works perfectly.  I've seen other posts on this topic on the internet, but not answers.

    I am writing in XHTML 1.0 Strict, where the checked = "checked", but I have tried all around switching to HTML 4.1 and just using checked no equal sign or value, and it still doesn't work.

    I'm working on Eclipse with the BlackBerry 4.6.0.200904091609 Simulator - 212.

    Any ideas? Thank you.

    It works, but I had to do it this way:

    document. MyForm.thecheckbox.Checked = false;

    Thank you!

Maybe you are looking for

  • maximum bookmarks

    I'm new to Firefox. Before, I used IE and I recorded a lot of favorites with 24 records each one having one or more subfolders.At the same time, I'm migrating from XP to W7 on another PC.I copied all my favorites in C:/USER/Jacques/Favorites (IE arch

  • I can't download google earth

    Whenever I try to download google earth, I get a message that says: "error unknown Installer. I use to have when I was with Vista Home premium. I have a new PC w/windows 7 and I can't google earth for DL now. Any help would be appreciated.

  • need to disable my other network connection to connect

    I have 2 connection and both are connected to the internet, but only the wireless connection is connected to a login page to connect to the internet, so if I try and connect there is no internet connection but when I turn off my wired connection and

  • HP 15-ac042TU: do not detect WiFi networks

    I have a HP 15-ac042TU (portable) (Core i34th gen / 4 GB/1 TB / Free DOS)(M9U96PA) problem with detecting WiFi its foundation not to any network I tried to work with several drivers but is not currently working Broadcom 802.11 network adapter is inst

  • Videos on Facebook

    What app download so I can watch videos on my Acer android Tablet?