Screen Sharing on Devices like Android and iOS

Hi Guys,
I am wondering if there is any way to get a device like Motorola XOOM or iPad to do the screen sharing (as the publisher). I suppose the contrary (PC =>Tablet) is possible. Any comments on this?
We would like to enable this for an application we are working on, I would love to hear your comments on this.
+LA

Nope!
Sent from my iPhone

Similar Messages

  • Videos recorded in mp4 format throught AMS(development version) not playing on android and Ios device.

    I am using adobe ams(development version) to record video files in mp4 format using rtmp protocol. I am using mp4 as the file extension and as the stream specifier(codec).The videos are saving correctly.When i copy these files on a mobile device(android and iOS) they are not playing.Can somebody tell what I am doing wrong.
    The rtmp url I am using is rtmp://localhost:1935/mp4:videoname.mp4

    Dropbox - defaultcodec.mp4
    Dropbox - h264codec.mp4
    These are the two files that I created .The first file is created by the default codec used by Flash player.
    The second file(h264codec.mp4) is created by using Flash player 11 and as3 . I have encoded the file using h.264/AAC.
    The tutorial followed for creating the second encoded file is Encoding live video to H.264/AVC with Flash Player 11 | Adobe Developer Connection
    Thanks in advance . These two files stream successfully in the web application using flash player and as3 .I can play both of them in VLC too. But these files wont play on any mobile device(both android and iOS).
    Please send me your feedback on this . In the meanwhile I will look into http streaming. 
    Any help is greatly appreciated. 

  • Do podcast get pushed to all iOS devices like music and apps do?

    do podcast get pushed to all iOS devices like music and apps do?  can i only download a pocast on one device or do I have to download it on each device?

    Welcome to the Apple Community.
    Podcasts are free, there is no need to have them work like music, you can download them at no charge at any time.

  • Build AS3 AIR project on Linux for Android and iOS?

    We're about to use a build server for taking some work out of our hands (testing, building etc). The build server is running on Linux and therefore we would like to know if we can build the AS3 (AIR) sourcecode on the Linux environment. We usely create apps for Android and iOS.
    Can anyone give some more information on this? Is it true that the ADT doesn't run on Linux?

    FYI, I updated my blog post.  I found a program called ideviceinstaller (available in the Ubuntu repos ala apt-get install ideviceinstaller or from the website) that allows installation of .ipa files onto iOS devices from Linux.
    Previously that was the only development iteration step that required a Windows VM.  Now in my workflow, a VM is no longer required for iOS development.  (Obviously a Mac is still required to upload to the app store at the end.)
    Also, a bonus, here's a quick command to view UUID's authorized by the provisioning file inside an .ipa file:
    > unzip -c Main.ipa *.mobileprovision | strings | egrep -i string\>[0-9a-f]\{40\}
    <string>d9c2fee807324a18baf5a544ffa2c80f23d3****</string>
    <string>f634a0a95bc2327f6a26cb39cf18a01918cf****</string>
    <string>651e4284467d328e37c18988c981179b5909****</string>
    <string>c11d7eef800632d072da067d9b993624f25b****</string>
    <string>72d85ab26cd525a328d3a71e3fe416c61fd6****</string>

  • Native Android and iOS Look & Feel with Flex

    Hi. I have recently beena asked to research the use of Flex for development for mobile applications in Android and iOS. What I want to accomplish is the feeling of a native application, both look and feel. Android and iOS are very different in terms of styling components.
    Can this be even be done in Flex?
    Are my goals too high too achieve with Flex?
    Screen shots from Flex, Android, and iOS are below.
    Differences:
    Item
    Android
    iOS
    Tabs Location
    Top
    Bottom
    Top Left Button
    'Up'
    'Back'
    Top Left Button Icon
    Application Icon
    None
    Top Right Button
    Multiple
    Single
    List Item Right Carrot
    No
    Yes
    Adobe Flex Example:
    Native Android Example (Pure Android):
    Native iOS Example:

    This is definitely possible, even easy if you jsut have the time to put into it.
    All you need is an Android Theme - create custom styles for the buttons ect.
    There is a discussion about it here:
    https://issues.apache.org/jira/browse/FLEX-33732
    And it is an open issue so at some point this will probably get incorporated into the SDK.

  • URGENT porting to Android and iOS?

    I am developing a Flash game and the deadline is by the end of this month.
    The game will need to be run on Android and iOS.
    I tried AIR, but it runs slowly due to there being frame-by-frame bitmap animations.
    Is there a good optimisation method for AIR, or should I use an API?
    Can you recommend a good API?
    How about Sparrow?
    I need an API which I will be able to implement fast, because as I mentioned the deadline is in 9 and a half days.

    the only quick magic is to make sure you've enabled cacheAsBitmap and cacheAsBitmapMatrix everywhere it's beneficial and to try using gpu and cpu render modes.
    otherwise, here's an excerpt from a book i wrote (Flash Game Development: In a Social, Mobile and 3D World)
    Optimization Techniques
    Unfortunately, I know of no completely satisfactory way to organize this information. In what follows, I discuss memory management first with sub-topics listed in alphabetical order. Then I discuss CPU/GPU management with sub-topics listed in alphabetical order.
    That may seem logical but there are, at least, two problems with that organization.
    I do not believe it is the most helpful way to organize this information.
    Memory management affects CPU/GPU usage, so everything in the Memory Management section could also be listed in the CPU/GPU section.
    Anyway, I am going to also list the information two other ways, from easiest to hardest to implement and from greatest to least benefit.
    Both of those later listings are subjective and are dependent on developer experience and capabilities, as well as, the test situation and test environment. I very much doubt there would be a consensus on ordering of these lists.  Nevertheless, I think they still are worthwhile.
    Easiest to Hardest to Implement
    Do not use Filters.
    Always use reverse for-loops and avoid do-loops and avoid while-loops.
    Explicitly stop Timers to ready them for gc (garbage collection).
    Use weak event listeners and remove listeners.
    Strictly type variables whenever possible.
    Explicitly disable mouse interactivity when mouse interactivity not needed.
    Replace dispatchEvents with callback functions whenever possible.
    Stop Sounds to enable Sounds and SoundChannels to be gc'd.
    Use the most basic DisplayObject needed.
    Always use cacheAsBitmap and cacheAsBitmapMatrix with air apps (i.e., mobile devices).
    Reuse Objects whenever possible.
    Event.ENTER_FRAME loops: Use different listeners and different listener functions applied to as few DisplayObjects as possible.
    Pool Objects instead of creating and gc'ing Objects.
    Use partial blitting.
    Use stage blitting.
    Use Stage3D.
    Greatest to Least Benefit
    Use stage blitting (if there is enough system memory).
    Use Stage3D.
    Use partial blitting.
    Use cacheAsBitmap and cacheAsBitmapMatrix with mobile devices.
    Explicitly disable mouse interactivity when mouse interactivity not needed.
    Do not use Filters.
    Use the most basic DisplayObject needed.
    Reuse Objects whenever possible.
    Event.ENTER_FRAME loops: Use different listeners and different listener functions applied to as few DisplayObjects as possible.
    Use reverse for-loops and avoid do-loops and while-loops.
    Pool Objects instead of creating and gc'ing Objects.
    Strictly type variables whenever possible.
    Use weak event listeners and remove listeners.
    Replace dispatchEvents with callback functions whenever possible.
    Explicitly stop Timers to ready for gc.
    Stop Sounds to enable Sounds and SoundChannels to be gc'd.

  • Captivate 7, PhoneGap Builder on Android and iOS tablets

    Hello all,
    I apologize if some of these questions are basic but searching the forums and online aren't turning up any answers I can discern. My company has decided to move into the mobile market for our E-Learning content, more specifically we want our customers to be able to use our content on tablet devices. I'm creating content with Adobe Captivate 7 using HTML5 animations. I have been able to publish my project as HTML5 and then use the PhoneGap Build tool to add the HTML5 animations to the project. However, I have no experience in app development and I'm running into a roadblock when trying to publish as Android and iOS compatible apps. I'm able to add the .wgz file to the android tablet but I have no idea how to run it or make it work. We just want our projects to play on Android and iOS tablets. My questions are thus:
    - Is publishing our modules in App form the only way to accomplish this?
    - When trying to publish to Android/iOS I am asked for a "Package". What does this mean? I've watched the following tutorial: Package the HTML5 content for devices using Adobe Captivate 7 App Packager - YouTube but it doesn't go into detail as to what he package is.
    - From what I understand Android and iOS apps need certificates and signatures. Are these required for our members to be able to download our modules and run them on their tablets? Can someone direct me to a source for me to learn about and apply for these credentials?
    Any help you can provide would be greatly appreciated. Thank you!
    - Nick

    Just to clear up my third question, I'm not asking whether our customers will need a set of these credentials to access our content, I'm asking if its required I get these credentials to publish the content.

  • Incident Management System for Mobile Phone (Android and IOS)

    Dear Solman Gurus,
    We have already Incident Management System in our Solman 7.1 .
    We are using it efficiently, but we want to use it in mobile phones also(android and ios).
    Also we have a web link and we can manage our incident management system in this link http://xxsolman.xxxxxxxx.com:8006/support . We are using for WEB also for Incident Management System.
    My question is ; how can i use it for Mobile Phone Operation systems(android and ios) ? Which guide should i follow ? Should i upgrade pacth or something in our solman ?
    Looks like Android application is : SAP IT Incident Management
    Best Regars

    Hi Kemal,
    You need to adopt the Mobile strategy for ITSM to use this. Broadly speaking, the ITSM apps can be accessible either via internet or intranet. If you plan to use the apps outside your company network then you would need Sybase tools to enable this as shown below;
    The detailed information is available here
    Mobile Applications for SAP IT Service Management - SAP IT Service Management on SAP Solution Manager - SCN Wiki
    Regards,
    Vivek

  • Illustrator app for mobile (Android and iOS)

    Would you like an Android (iOS) Illustartor App?
    I wish:
    That there was an Android (and iOS) app of illustrator so I could work on Layouts for Websites on the go, like while I'm riding the train for 1 hour to go to work.
    There is an app which I tried (Autodesk Sketch Pro) but it's no good enough it is focusing too much on freehand drawing and it's layer based. You can't move a shape itself, you have to move the whole layer.
    What I need:
    I need an app for my Android phone and tablet which enables me to make layouts of websites which after I will send to my designer and developer. The thing is, I need to send good layout sketches to my designer.  With that the whole process would be more efficient.
    I'm not a good at freehand drawing thats why I would like to work with all the standard vector shapes, snap to grid, different kinds of splines and the possibility to add open fonts.
    What Adobe (Illustrator) should do:
    I think the way you should do this mobile app is:
    1. Check Autodesk Sketch pro (what can you to better than them)
    2. Make a great vector app
    3. Include a function that is useful to a lot of people to get more potential customers. (include: a nice drawing function, the ability to make nice flowcharts and/or infographics)
    4. Sell it to a fair price 8-12$
    I hope I didn’t forget anything if I did please let me know in the comments below Thank you.
    Twitter: RandomDomain.ch (randomdomainch) | Twitter  #Illustartor4mobile

    Am still waiting. Anyone out there who got new info on this?
    I am also wondering if it will be part of the creative cloud I already pay for on a monthly basis.

  • Internet Technology by Abney and Associates - Android and iOS

    Right now iOs is ahead of Android. A battle between Android and iOS
    Most of the well-off smartphone users in Singapore and Hong Kong are turning to Android handsets, mostly Samsung, rather than iOS of Apple.  The trouble that iPhone is their desire to be different that causing them as weakness and in turn an advantage to competing device.
    But which brand is better for smartphones?

    If you dont mind being "locked down" Apple seems to make better products, Android is keeping up but Apple seems to be the inovator in the industry, people still think of an iPhone when the word smart phone is mentioned.

  • Android and iOS xml

    Hi,
    I have my xml file for my android and iOS device. I am fine with what needs to be in the iOS bits but I am new to Android.
    I know permissions are needed, but is there anything else that is a must? Any pitfalls that I may slip into?
    I have these icon sizes too:
    <image36x36>testAppIcon36.png</image36x36>
    <image48x48>testAppIcon48.png</image48x48>
    <image72x72>testAppIcon72.png</image72x72>

    http://help.adobe.com/en_US/air/build/WSfffb011ac560372f-5d0f4f25128cc9cd0cb-7ffc.html

  • ARD Screen Sharing is distorted at top and blank on sides

    Hi there,
    I'm having an issue with screen sharing on Apple Remote Desktop and also screen sharing through the Finder.
    When I screen share with a Mac Pro which is connected to a projector the screen share looks like the image below:
    The top is distorted and there is a large black bar to the right.
    Would this have something to do with the screen resolution or interferrence between the Mac Pro monitor and the attached Projector?
    This issue occurs even when the Projector is turned off.
    Also, the mouse is not correctly lined up on the screen share, so to click on a text box I need to click a bit above the top of the text box.
    The Mac Pro is part of a Mac Pro suite of 17 Mac Pros and I am having the same issue connecting to the troublesome Mac from all of the Mac Pros in the room. However, there is no problem connecting to a screen from the troublesome Mac. In this case, the image is fine.
    The Mac Pro is a Mac Pro5,1 2.8QCX/10GB RAM/1TB/5779/SD (mid 2010). It is connected to a EIZO FlexScan S2202W LCD monitor and Hitachi ED-X42 projector. We're running Mac OS X 10.7.1.
    The Mac Pros are all connected via ethernet on a Local Area Network.
    All Apple and ARD software is up to date.
    Any help with this issue is much appreciated.
    Thank you!
    Lawrence

    Hi Brandon and slepping, thanks for the advice. Unfortunately none of your suggestions worked for me.
    However, I think I've solved it!
    I think it's to do with synchronising the screen resolutions of the monitor and projector.
    Originally my projector resolution was set much higher than my monitor resolution.
    I've lowered my projector resolution to the same resolution as the monitor and the screen sharing works much better now. Check the image below:
    I'm sure I didn't have this issue in Mac OS 10.5 and 10.6. But hey ho, maybe a niggling bug that needs to be ironed out in Lion.
    Thanks for all of your suggestions.
    Lawrence

  • I don't have a wireless printer, and want to print things off of my iPad.  I know that I can use the iPad Camera Connection kit to connect USB devices like keyboards and I am wondering if I could do the same with a USB printer.

    I don't have a wireless printer, and want to print things off of my iPad.  I know that I can use the iPad Camera Connection kit to connect USB devices like keyboards and I am wondering if I could do the same with a USB printer.

    I don't think you can connect a printer since you won't have the printer drivers. I use FingerPrint from collobos.com to print to my non-AirPrint printers.

  • Can't use Glympse the way android and ios can use

    I'm on Z10STL100-1/10.2.1.1925 bbm 10.3.3.68. Can't send my location the way android and ios can. When an android or ios user sends me glimpse message I can open it in bbm. But when I send a Glympse message to android or ios then they get a link to glympse.com. Please help.

    I bounced a BBM off an iOS contact of mine and it asked if he wanted to follow my location on a map. As far as I can remember, my wife (who has a Z10) had to also click on that message to make my location viewable on a map. I don't see any difference between the two. With neither one are you able to instantly see the sender's location without clicking to open a map.
    I'm only going by memory with my wife's Z10 so I might be missing something but I think it works similarly with all platforms.
    Cheers.  
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Website to stream to RTMP and HTTP using Android and iOS

    Hello, my name is Silvio Tavares, I'm from Brazil and the company where they work bought the Adobe Flash Media Server 5 to make the transmission of the station for the Website as well as for Android and iOS.
    I followed your tutorial step by step and nothing more than 20x ( http://www.youtube.com/watch?v=1p27xavIWQA ) .... When I try to run the transmission in Sample Video Player he simply says I'm having a problem with my playback.
    Is there anything else to be done?
    Please know it must be very busy, but my job depends on it working here.
    I am using Windows Server 2012.
    In this tutorial does not say you have to configure any file, only the conf.xml Adone Media Live Encoder.
    Please help me!

    Hello, my name is Silvio Tavares, I'm from Brazil and the company where they work bought the Adobe Flash Media Server 5 to make the transmission of the station for the Website as well as for Android and iOS.
    I followed your tutorial step by step and nothing more than 20x ( http://www.youtube.com/watch?v=1p27xavIWQA ) .... When I try to run the transmission in Sample Video Player he simply says I'm having a problem with my playback.
    Is there anything else to be done?
    Please know it must be very busy, but my job depends on it working here.
    I am using Windows Server 2012.
    In this tutorial does not say you have to configure any file, only the conf.xml Adone Media Live Encoder.
    Please help me!

Maybe you are looking for

  • How to setup AirPort Time Capsule with static IP?

    Untill few days ago I have been using Airport Extreme as router for my network. It was cabled to the modem from my internet-provider. I had 2 printers, 1 iMac, 1 MB-Pro, several SONOS-devices, iPhone, Loewe-TV and iPad setup for it. AND IT HAS BEEN W

  • Creating support ticket from help

    Dear friends, When i create a support desk ticket from the help menu in any of the satellite sytems ,the sytem calls the standard transaction type SLFN , i have created my own transaction type which is a copy of the standard SLFN ,how do i create sup

  • Downloading  camera raw 5.4

    I've downloaded camera raw 5.4 for CS4.  I have a Canon Ti1.  When I try to install the update, I keep getting the message to close the following application and retry to continue installing update.  The application is Adobe Bridge.  I don't have it

  • Error Adapter Engine

    Hi experts, I have scenario file to RFC asyncronuos. The function RFC have 2 import parameter and 1 parameter export. I have looked at possible solutions forum, I've seen that can be debugging function rfc for that I must copy it into XI, but this is

  • Delivery Against safety stock

    Hi All experts, In my REM buisness scenarion, I want to deliver the quantity from safety stock for sales order. I did setting for MRP group :- Share saety stock 100% and assigned this MRP group to finish product. But delivery takes place but picking