Screen-sharing an iPad App into Adobe Connect Platform

Hello,
I am looking to screen-share an iPad application (not the Adobe Connect App) in an upcoming Webcast.
What is the best method to do this, while still retaining the highest quality share?
Thanks!
-Matt

I have used reflector to share a whiteboard app from my ipad, and it appears to work at first. However, when also using a webcam in a video pod, the Adobe connect plugin crashes when I switch layouts. Has anybody else tried this successfully in a live webinar?
Thanks.
Todd

Similar Messages

  • To create a simulation tutorial of an iPad App using Adobe Captivate 08.

    To create a simulation tutorial of an iPad App using Adobe Captivate 08.
    The solution I got is to use Reflector App to mirror the iPad on to the PC and then record the screen. And to show user taps (essential for creating a simulation) through the reflector, NRTouchPoints, a UIWindow subclass that simulates user touches on the screen, has to be included in the application. Has anyone tried this out? Is this suggestion feasible?

    After developing the .swf, I'm creating a .apk (Android application
    package) file which includes the finished .swf file (at 720x1280), 3 icon
    files  (one of which is used as the button on the Android screen to start
    the app), the required .xml file (which holds the necessary info on how
    Android uses the .apk file).
    The finished .apk file is then uploaded to the Android device using the adb
    (Android Debug Bridge) commands in a command prompt.
    Gary Giurbino*
    eLearning Developer
    *Enterprise *Product Docs & Communication
    W: 650.214.2462
    [email protected]
    <http://www.google.com/>*
    1600 Amphitheatre Pkwy
    Mountain View, CA 94043

  • Unable to Publish Captive 4 into Adobe Connect with Windows 7

    Hello,
    I am using Adobe Captive 4 and have previously been able to publish my Adobe Captivate videos into Adobe Connect.  However, I have now had my PC upgraded to Windows 7 and am now unable to do so. When I attempt to publish into Adobe Connect, I received the following message:
    Adobe Connect requires Flash Player 9.0.0.0 or above.
    I have Flash version 11 installed on my computer so I don't think this is the problem. However, I do notice that the publish option opens in a window that seems to be another program or wizard that is used to publish from Captivate into Adobe Connect; this may be where my problem resides. I had a co-worker on Windows XP try and everything still works fine. It is only with Windows 7 that this problem occurs.
    Any help or direction with this issue would be great.
    Thanks!

    Odd, I just verified that I could publish from CP4 to Connect. Windows 7, Connect 8.2.1, Captivate 4.0.1 Build 1658.
    Have you tried uninstalling and reinstalling Captivate? Maybe it didn't hook into the right version of Flash...

  • Wieso kann ich mit meiner adobe id im ipad app von adobe nicht einloggen?

    hallo zusammen
    ich habe gestern das ipad app von adobe geladen, im prinzip mit dem gedanken, da video2brain runterzuladen und zu studieren.
    leider kann ich mit meiner adobe id dort nicht einloggen. es kommt immer eine meldung, das passwort passe nicht zum benützer. weiss vielleicht jemand, was ich da tun kann? hier geht es ja wunderbar. ansonsten kann ich das app ja auch gleich wieder löschen. wäre echt schade.
    danke euch schon jetzt für eure hilfe.
    mfg
    kempf

    da ich damit offensichtlich nichts anfangen kann dann lösch ich das app also wieder.
    das video2brain app auf dem ipad fordert nämlich komischerweise (da es ja nicht von adobe sein soll) die adobe ID mit passwort - und sagt dann, es sei falsch...
    kann mir dann eventuell jemand sagen, mit welchem app (wie heisst das app?) ich im ipad video2brain-schulungen anschauen kann, resp. eben welches app ich brauche, damit ich vom ipad aus bei adobe einloggen kann und video2brain schulungen auf den ipad downloaden kann. geht das eventuell nur den normalen weg via internet?
    danke euch.

  • Screen sharing thru message app

    Hi,
    I just upgraded to Yosemite on my Macbook Air mid 2011. When I tried the screen sharing in the message, I found the the icon of it was greyed out so that I had to no way to invite or ask to share the screen. On my iMac 2012, this feature works without any problem.
    Is this a bug or a setting issue?
    Thanks.

    I believe I resolved my issue.  It turned out that the person I was attempting to share my scree with had a problem with his installation of Messages wherein his messages were not replicating to all of his devices.  He called Apple support and they were able to fix that problem.  We then re-tested screen sharing and I was then able to share my screen successfully with him.
    The lesson learned, when this happens, is to first verify that Messages is working correctly for the person you are attempting to share screens with.  I also have found that the sharing icon will appear grayed out if you attempt to share screens with a person connected via iPhone (4S in this case).

  • Screen sharing for iPad? Possible?

    Is there an app that I can share a screen with another iPad? Like a white board?

    Look at the app Talkboard.

  • Logging into Adobe Connect

    I have an Adobe username and password.  I'm trying to log into an adobe connect training video.  It says I have invalid user name and password.
    How do I fix it?

    An Adobe.com Username and Password are different from a Connect Username and Password.
    Ensure that you are are at the correct URL for the Connect account, because there are many server clusters, hitting the wrong cluster will mean that your username and password is not recognized.
    You can also use the Forgot My Password link and have the Connect system send you an email to reset your password, so you can log in.

  • Downloading iPad apps into Mac computer?

    I downloaded some free and not free apps into my iPad. I have since sold my iPad. I still have 13 apps listed in my iTunes library. Is there a way to download these into my computer? I do not have an iPhone or any other portable device except AppleTV 2.
    Thanks,
    Mike

    If you mean can you open them on a computer then the answer is no, iOS apps will only work on iOS devices. You can however store iOS apps in iTunes so that if you buy an iPad, iPhone or iPod touch in the future you will be able to sync them to your device again.
    All apps, whether paid or free, can be downloaded again free of charge whenever you wish.

  • Creating app for Adobe Connect 8

    I am in the process of creating a Flashbuilder application that will log onto Adobe Connect 8 and draw a whole lot of info off of the server.
    I am able to log onto Adobe Connect from my application.
    Now I would like to have some text that says "Welcome Dimitri Merritt" (obviously whatever the users name is). If I have read the documentation correctly I should be able to us x-user-id. I have tried this but without luck. Can somebody please help me out?
    Dimtiri

    Ok I figured this one out with help form Kapil (thanks Kapil).
    Here are a few lines of code that is needed:
    <s:HTTPService id="myPersonalInfo" fault="faultHandler(event) resultFormat="e4x" result"personalInfo(event)"/>
    Then create a function e.g.
    private function requestPersonalInfo():void{
    domainUrl="your url.com";
    personalInfoRequest="";
    personalInfoRequest=domainUrl+api_xml_string;
    personalInfoRequest+="common-info";
    myPersonalInfo.url=personalInfoRequest;
    myPersonalInfo.send();
    private funtion personalInfo(event:ResultEvent):void{
    personalName=event.result.common.user.name;
    Username.text="Welcome" + personalName;
    Thats it.

  • Is there a way to organise Ipad apps into groups (folders) e.g. English, Maths, PrePrimary etc. in Itunes for syncing purposes?

    I work in a school and have a 32 bay syncing, recharging cabinet. We are starting to get a lot of apps and need to orgaise them better. I know I can organise them into groups on an individual ipad but can I do this organisation in itunes and then sync this organisation to the 32 ipads in the cabinet.

    Sorry did quick reply on your title. I'm not sure about iTunes. If you have them all attached to one apple I'd, then yo u can sync all of them the same up to 10 devices. Once you create one then you can sync the rest the same with the same folders. I'm not sure on how education works. You might be able to do more than 10 per id. I'm out of my league on that ?

  • IPad apps and Adobe flash player

    My daughter uses an app for homeschooling that needs adobe flash player to run all it's elements.  But adobe says flash player cannot be put on the ipad.  How can I get around this?  Is there another option?

    Do you mean app or a website ? Any app in the app store shouldn't need flash player as flash is not supported on the iPad, and probably never will be.
    Browser apps such as Skyfire, iSwifter, Puffin and Photon 'work' on some sites, but judging by their reviews not all sites. Also some websites etc have their own apps in the App Store.

  • Error uploading App to Adobe Connect

    I am receiving the following errrors, please let me know what I need to do to fix them.
    Thanks!
    - ERROR ITMS-9000: "This bundle is invalid. The bundle indentifer is alread in use by a different software package." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
    - ERROR ITMS-9000: "The bundle indentifier cannot be chaneged from the current value, 'org.catalyst'. If you want to change your bundle identifier, you will need to create a new application in iTunes Connect." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)
    - WARNING ITMS-9000: "Version Mismatch. Neither CFBundleVersion ['3.3.3.7.89459'] nor CFBundleShortVersionString ['1.0.6'] in the Info.plist match the version of the app set in iTunes Connect ['1.0']." at SoftwareAssets/SoftwareAsset (MZItmspSoftwareAssetPackage)]

    Thanks so much for getting back to me. I made a few changes and uploaded it again and it seems like it went through. I just got the below email from Apple. Do I need to update the binary for this app in order for it to go through? If so, do I just need to reject the binary from the Binary Details page or do I need to do something else?
    Thanks again!
    "We have discovered one or more issues with your recent delivery for "APP NAME". Your delivery was successful, but you may wish to correct the following issues in your next delivery:
    Version Mismatch - Neither CFBundleVersion ['3.3.3.9.89459'] nor CFBundleShortVersionString ['1.0.8'] in the Info.plist match the version of the app set in iTunes Connect ['1.0'].
    If you would like to update your binary for this app, you can reject this binary from the Binary Details page in iTunes Connect. Note that rejecting your binary will remove your app from the review queue and the review process will start over from the beginning when you resubmit your binary."

  • Screen sharing multiple ipads?

    Situation: We have an iPad2 and a few other ipads. we frequently do business presentations using keynote.
    Question: We want to run the presentation on the ipad 2 and screen-share to the other ipads instead of using a projector. Can we do this?

    is there a way to run a presentation per above--controlling all the screens in the room, but using different software or system configurations? E.g., a minorly interactive PDF.
    At minimum I'd like to drive the presentation: advance, jump (simple HTML nav?), enlarge, and reposition (possibly allowing viewers to do the same).
    Is this too much t ask?

  • Is there any iPad app using adobe AIR ?

    Hi there,
    Do you know some good apps for iPad using AIR ?
    I could only find the famous game "Machinarium" and the Wired app...
    Thank you all very much.
    Regards,
    Hugo

    My game Magnolia is both for iPad and iPhone
    App store: http://itunes.apple.com/us/app/magnolia/id470511737?mt=8
    And also available on Android
    Brian

  • Looking for assistance in developing a magazine with 117 pages - iPad App with Adobe digital Publishing suite for the iStore

    We are looking for some help in developing and App, so that we can publish our current hard-copy magazine with 117 pages onto the iStore any suggestions?

    as bob said, it depends what kind of assistance.
    which language is needed, are you able to spend money on it, when is the deadline.
    do you need technic support, design help? do you have a license for dps, which one?
    ect.
    if you need a professional, experienced team our company could help you. but we will not work for free

Maybe you are looking for

  • Can you transfer data from one iPad to another iPad

    Can you transfer data, books and music from one iPad to another .

  • Table name for Reason field in Details tab in CRMD_ORDER transaction

    hi , kindly pls suggest me the table name for field Reason in Details tab of CRMD_ORDER transaction. thanks

  • IPAD 2 IOS5.1 to IOS7.0 hangs ! help

    HI folks I just decided to upgrade my ipad that was running ios5.1 to 7.0 .   I used the update option in ipad 2 that has a update option i.e  a latest sW.   the ipad2 started to do an update  then the ipad rebooted .  Then it had a apple logo and th

  • Question on process integrator

    Sir i need to merge two tables from heterogeneous data sources and apply multiple join conditions. The tables contain very large data volumes. What is the recommended method to maximize performance and reduce system resources pls reply back soon sir

  • Setting Jslider background Image ?

    Hi, I am trying to use JSlider component with a background image, but I am not successfull. Can anyone suggest how to do that. I am tried to subclass JSlider and override the paint method, but then i can see only the image but not the knob and slider