Issues using multiscreen.html to display content on iPad

Hello all,
I'm using multiscreen.html to enable people using a variety of browsers to view Captivate 6 content.   From an iPad, the content is cut off a bit from the right side of the screen and a sliver of blank space is displayed on the left. After the video loads, and while holding the iPad in landscape mode and then turning it from landscape mode to portrait, all content will nicely fit back on the screen.  Content continues to fit if I turn the iPad back to landscape mode.  I'm not experiencing this issue on the iPad using the index.html (html5) file. 
For the sake of compatibility among browsers and devices, I prefer to use the multiscreen.html file to drive my video.  Does anybody have any suggestions? 
Thanks so much!
-g

Which iPod Touch model? What version of IOS? Try double tapping the home button, swipe (left to right) twice and you will see the airplay icon. Airplay needs to be enabled on ATV and iPod needs to be on the same network.

Similar Messages

  • My iPad is connected to wifi  but unable to display  contents from iPad to TV via ATV

    A.MY iPad is connected to Wi.Fi but unable to display contents from my iPad to TV via my ATV

    Look at the Apple TV manual
    http://support.apple.com/manuals/#appletv
     Cheers, Tom

  • Using local HTML results in content generation error

    I'm trying to place local html that only deals with a column of text and an image in a box and make it scroll. When I place the html file with the Web Content Overlay directly in a frame and Preview on the Desktop Viewer, the frame scrolls perfectly, but won't import into the folio with the Folio Builder. "Content generation error, the folder is invalid for import." I also tried placing the html file in a frame as above, apply Web Content Overlay, and then Pasting Into a Content frame and then using the Scrolling frame Overlay. Works fine on the Desktop Viewer, but Builder won't import the article, same error as above. I could really use help with this! I can't find any instructions other than for YouTube embeds or full page html.

    Yes, but one of my clients uses HTML for many things, loves js and wants to provide content that way. I thought you could use any interactive overlay in a scrolling box. I'm also trying to embed a Google map in a scrolling box and not having much luck with that either!
    Sent from my iPad

  • TEXT AREA - Not able to display contents more than length 4000

    We use textarea item to display contents of xml .
    But if the content is of size more than 4000 , we are not able to display it in text area.
    Any suggession / workaround for this .. please help.

    A simple workaround is to write a function returning this text and use "PL/SQL Function Body" as a "source type" for this textarea. This way you edit text up to 32kB (limit of HTML input item)

  • Captivate 7 web object not scrolling properly iPad multiscreen.html

    I have a Captivate 7 project published as both SWF and HTML5. The project is to be deployed via an LMS using multiscreen.html.
    The issue that I have is that I have a web object that requires scrolling but when I view multiscreen.html on my iPad I am required to scroll horizontally with my finger to achieve vertical scrolling of my web object, any attempt to scroll vertically just causes the web bouce effect in Safari. If I view the project via index.html on my iPad, scrolling works as expected with vertical scrolling behaving properly and no web bounce.
    It seems as though multiscreen.html is getting the orientation of the device confused but that's just a guess. Has anyone else encountered this and if so, do they have a workaround that they can share please?
    Many thanks.

    I've found that updating the file called 'Widget_40080.htm' with the highlighted section in the following image fixes the scrolling issue on iPad.

  • Multiscreen HTML 5  output  in Chrome – when scrolling down very long topics in the content pane the navigation area 'moves up' , i.e cant see search field or TOC.

    Hi,
    Multiscreen HTML 5  output  in Chrome – when scrolling down very long topics in the content pane the navigation area 'moves up' , i.e cant see search field or TOC.
    thanks
    Anat 

    This is by design. If you want to change this, the content section must have a set height and scroll. Which layout are you using? -- Check out the Responsive layouts and the Social layout. I believe those have the more traditional TOC placement.
    Kind regards,
    Willam

  • Display Content Groups using  JSP

    I have created an ATG content group with the
    rulesets=<ruleset>\n <accepts>\n <rule op\=and tag\="Show">\n <rule op\=and tag\="Content">\n <rule op\=any tag\="ContentSources">\n </rule>\n <rule op\=and tag\="ContentConditions">\n <rule op\=eq>\n <valueof target\="id">\n <valueof constant\="rootProd">\n </rule>\n </rule>\n </rule>\n </rule>\n </accepts>\n</ruleset>
    But i don't know how to use it/ display the product in the JSP.
    I also created a targeter and was able to display the product using TargetingFirst droplet.
    Please share your views on how to display contents of Content Group in JSP.

    Put it in an applet.
    http://java.sun.com/docs/books/tutorial/applet/index.html

  • I have a version 1 iPad. I would like to be able to use my LCD projector to display content to my students. I have the dongle to attach to the projector, but can't make it work. The process DOES work with my friend's iPad 2. Any advice? Thanks!

    I have a version 1 iPad. I would like to be able to use my LCD projector to display content to my students. I have the dongle to attach to the projector, but can't make it work. The process DOES work with my friend's iPad 2. Any advice? Thanks!

    Expanding on what deggie said, with an iPad 1 the app you're using must support video out. Only the iPad 2 can mirror the screen. The apps included with the iPad that output to external monitors are given here:
    http://support.apple.com/kb/HT4108
    For third-party apps, consult the app's documentation or contact the developer.
    Regards.

  • Help with redirect using an HTML content variable

    Hi All,
    I have created an update_user page to update records in the
    table, and
    when submitted I want to be redirected to another "page". I
    really only
    have one page, an admin.php page, with one of the div's named
    "main".
    It uses the HTML content variable to replace the include file
    based on
    its name:
    > <?php
    > if (!isset($_REQUEST['content']))
    > include("main.inc.php");
    > else
    > {
    > $content = $_REQUEST['content'];
    > $nextpage = $content . ".inc.php";
    > include($nextpage);
    > } ?>
    So what I want to do now is redirect to something like the
    following:
    admin.php?content=userList
    I have tried replacing the value of the variable $updateGoTo
    shown below
    to include the content variable as shown above, but it
    doesn't work. So
    I think I'm not understanding the code below and that's
    preventing me
    from accomplishing what I want.
    > $updateGoTo = "admin.php";
    > if (isset($_SERVER['QUERY_STRING'])) {
    > $updateGoTo .= (strpos($updateGoTo, '?')) ? "&" :
    > $updateGoTo .= $_SERVER['QUERY_STRING'];
    > }
    > header(sprintf("Location: %s", $updateGoTo));
    Can someone explain to me what the above code is doing, and
    what I need
    to do to accomplish my task?
    Many thanks.

    Micha,
    Thanks for your replies.
    > HTTP requires an absolute URL in the Location header.
    You have to add
    >
    http:// and the hostname.
    Why does the relative link work on my testing server as I had
    it listed
    before? Making the link absolute isn't any great problem, so
    I'll just
    do it.
    > 1) Don't use $_REQUEST, it contains mixed data from
    three different
    > sources. If you want to access URL parameters, use
    $_GET.
    >
    > 2) _Never_ trust any user-submitted data! The above code
    allows remote
    > code injection:
    >
    >
    http://example.com/admin.php?content=http://malicious.server/hackme
    >
    > Make sure that $_GET['content'] contains an allowed
    value, before you
    > use it in an include statement.
    Thanks for the pointer, I'll use $_GET instead. This is a
    password
    protected area that is only accessible to trusted users with
    admin
    privileges, so I would think they would be safe. However, on
    the public
    side I'll consider creating an allowable list for all HTML
    variables.
    Thanks.
    Brett

  • Having issues receiving MMS and/or media content. I have visited several forums and did successfully receive at least one photo and sent one photo sucessfully. However, I am now unable to receive media via MMS. Phone displays message: "Get Media Content N

    Having issues receiving MMS and/or media content. I have visited several forums and did successfully receive at least one photo and sent one photo sucessfully. However, I am now unable to receive media via MMS. Phone displays message: "Get Media Content Now 30KB", but it only emits a tone after pressing. I have add a MMS VPN already. Any suggestions??? Thanks!

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • RH10 Multiscreen HTML 5 support - glossary issue

    Hi,
    I'm currently evaluating the new version of RH10.
    I'm trying out the new Multiscreen HTML 5 layouts and have set up a desktop layout and am investigating configuring it for my company's look & feel.
    The Multiscreen settings dialog gives you the option to select a TOC, Index, Glossary, etc of your choice, but it doesn't appear to let you opt out of using one! How can I opt out of having a glossary? RH8 allowed you to choose which tabs you wanted.
    Am I missing something?
    Thanks for any help.
    Feebeegeebee

    Hi,
    Wow, the release is only a day old and we find the first HTML5 post
    If you want to opt out, you must amend the screen layout so that that information is excluded. For example the Desktop Layout. Now select the Glossary/Index/TOC element so that squares around the element, such as this:
    Now simply press Delete to remove the tab from the output. Do this for all the pages that the glossary can be accessed. (Home page, topic and search results.)
    Greet,
    Willam

  • Issue displaying content on iframes.

    Hello everyone,
    I am trying to display a few pages on an iframe for a few seconds each on a loop. 
    I have been able to display content on the iframe when I do it by adding this line.
    frame1.Attributes["src"] = "http://intranet.contoso.com/sites/Report";
    Unfortunately it does not work when I try to put it in a loop:
    do
    frame1.Attributes["src"] = "http://intranet.contoso.com/sites/Report";
    Thread.Sleep(5000);
    frame1.Attributes["src"] = "http://intranet.contoso.com/sites/dashboard";
    Thread.Sleep(5000);
    } while (true);
    Is there something I am missing?
    Thanks so much for your help.
    There is always something above the sky

    Please post ASP.NET related questions in the ASP.NET forums:
    http://forums.asp.net

  • What is the best method to refresh display content (possibly push refresh)?

    We are using Coldfusion 9.0, and our issue is simple.  We were asked to make a few display screens to put up a schedule of events.  So we created a quick backend HTML publisher and made the client refresh every 30 seconds using meta refresh that displays the screen that is published.  Works wonderful.  A change is made, the screens update quickly in 30 seconds or less.
    Over the weekend we had an update push out to the server that openend up a larger issue.  The update shut down the webserver temporarily and that caused the display to go to the standard site cannot be reached (diagnose connection, etc).  At that point the refresh is killed, the display screens are dead in the water until someone hits f-5.  That made us think that everytime we have anykind of blip, the screens will have to be touched.  This is a small project, we wanted something simple and we got it.  I'm concerned now we just created a techsupport monitoring situation unintentionally.
    So that brings me to the real question.  What is the best practice to do this?  After doing a google search there seems to be all kinds of directions to go in.  I don't want a complex solution because the decision to not outsource was based on how quick of a project this was.  I am hoping to get some guidance on how to make a simple push of HTML to a screen in a Coldfusion environment.
    Thanks in advance for any help offered.

    Dolfan Alex wrote:
    If that was implied, I did not mean for that to be.  The sentence before explains that you are at the diagnose internet connection screen.  At that point, refresh no longer occurs, the content is not even on the screen to be cached.  Thanks for taking the time to respond.
    Ah, I see. Sounds to me like something for websockets. ColdFusion 10 implements websockets. Earlier versions of ColdFusion may use Nathan Mische's websocket gateway.

  • Renaming multiscreen.html

    I'm deploying a project via a custom system (that I don't control or have access to) that is hell-bent on looking for index.html as its launch file.
    As a result I need to rename multiscreen.html to index.html and subsequently rename what used to be index.html (HTML5 launch file) to index2.html
    In the html file that has the multiscreen code in it I have also pointed to index2.html for the HTML5 version. Hopefully this makes sense so far...
    The issue I have is that when the SWF version is viewed, I need to hover over the buttons for ~2 seconds before they become clickable. This isses only seems to present when I have modified multiscreen.html so I was wondering whether anyone had any advice (other than not to modify multiscreen.html ).
    Has anyone else had to do this and if so are there other places in the output files that I need to make modifications to accommodate the changes I've made to file names?
    We've tested this on Windows Vista, Windows 7 and Windows 8. It seems to behave on Windows 7 but not the other two. Browsers that are affected are IE9, Chrome, Firefox and Safari.
    Many thanks.

    This is by design. If you want to change this, the content section must have a set height and scroll. Which layout are you using? -- Check out the Responsive layouts and the Social layout. I believe those have the more traditional TOC placement.
    Kind regards,
    Willam

  • HTML code displayed in browser

    when viewing the jsp pages from remote network, we are having a problem. The page ends abruptly and the html tags like <td width="30" > are displayed on the browser. the content of the page also ends at the point of html code display. the server console shows no error. Not sure if it is some network or server issue. Please help.

    posting & quot(no space between & and quot) its getting replaced by " so everywhere there is a space between & and <quot/lt/gt/amp) strip that while using.
    HTML reserved characters are & quot; & amp; & lt; & gt; for ", &, <, > respectively.
    while writing such characters, do not directly put < , > &, " use the chars shown above.
    for help here is the utility method that will put the desired chars:
         public static String escapeHTML(String value)
            if (value == null) return "";
            StringBuffer strval = new StringBuffer();
            for (int i = 0; i < value.length(); i++)
                  char ch = value.charAt(i);
                  switch (ch)
                       case '"': strval.append("& quot;"); break;
                       case '&': strval.append("& amp;"); break;
                       case '<': strval.append("& lt;"); break;
                       case '>': strval.append("& gt;"); break;
                       default:
                            if (ch > 126)
                                 strval.append("&#" + String.valueOf(ch) + ";");
                            else
                                 strval.append(ch);
                            break;
             return strval.toString();
         }

Maybe you are looking for

  • Oracle 8.1.7 on AIX 5.3

    I have existing Oracle Database 8.1.7 running on AIX 5.2. My plan is to install 11g Software as different ORACLE_HOME and upgrade 8.1.7 to 11g Based on 11g documentation looks like it only works with AIX 5.3 . So my question is if we upgrade AIX leve

  • ISE 1.3 NAC Web Agent for Posture

    Hi, We have two categories of wireless users (Vendors and Guests) and we need only Vendors to do posture (AV update check).We need to have two different portals to be redirected once each category of user hit as Vendor portal should also do device co

  • Restricting select-options

    Hi, I came across this piece of code in ABAP FAQ. It is supposed to restrict the select-options so that the user can enter only specific options like only intervals or single values or patterns etc. But for some reason its not working for me. I am us

  • When updating Java it asks about 32 bit or 64 bit. How do I know which to choose

    I was using Firefox "Update plug-in" feature. I would select windows 7 option but it wants to know if I want 32 0r 64 bit version. How do I determine which I should select?

  • Installing OS 10.4.7 on a new hard drive

    I am trying to install 10.4.7 on a new hard drive from disc one and it keeps getting stuck. I'm now sure if its the cd or not. What else can I do? Can I use a different computer to do the install, if so how?