Nexus 7 Android for Touch Apps?

When are you going to support Nexus 7? for touch apps? Can't use them yet..
Cheers

Hi Ajwmedia,
The 1.4 release for Photoshop Touch added support for 7" devices, including the Nexus 7 I believe. That currently is the only touch app. This has been a very popular feature request though. Please add you vote here:
http://forums.adobe.com/ideas/1877
-Dave

Similar Messages

  • Can i use icloud on android for itune apps

    Can i use icloud on android phone to use snapsave and other purchased apps from itunes?

    No.  You can only sync iCloud contacts and calendar on an android phone using
    SmoothSync for Cloud Contacts and SmoothSync for Cloud Calendars, as well as set up your iCloud email account on an android phone using these settings: http://support.apple.com/kb/HT4864.  You can't use iCloud to use apps purchased from iTunes as they only work on iOS devices.

  • Has anyone been successful with "apk expansion pack" solution through air for android for large apps

    We have a 300 MB application which is very video happen and we need to find a solution that packages the content along an install file that is less than 50 MB for the android market.
    any help would be greatly appreciated.

    In Flash CS6, I built my own downloader for when the app is run the first time. First it creates a list of files to be downloaded then downloads them one at a time. After all files are downloaded I used the ELS to save the download status.
    import flash.net.URLRequestHeader;
    import flash.net.URLLoader;
    import flash.net.URLLoaderDataFormat;
    import flash.net.URLRequest;
    import flash.filesystem.FileStream;
    import flash.filesystem.File;
    import flash.filesystem.FileMode;
    import flash.utils.ByteArray;
    import flash.events.ProgressEvent;
    import flash.display.Loader;
    import VideoInfo;
    import flash.events.IOErrorEvent;
    import flash.net.NetworkInfo;
    import flash.net.NetworkInterface;
    function downloadAllFiles():void {
        //downloads files
        fileIndex = 0;
        downloadNextFile();
    function downloadNextFile():void {
        //downloads one file
        if (fileIndex <= video_list.length-1) {
            //progress bar
            //progress_mc.width = 1;
            //progress_txt.text = "";
            status_txt.text = "Download in progress...";
            var fileURL:String           = video_list[fileIndex].videoURL;
            fileName                         = video_list[fileIndex].videoName;
            fileSize                           = video_list[fileIndex].videoSize;
            var fileMimeType:String = video_list[fileIndex].videoMimeType;
            var header:URLRequestHeader = new URLRequestHeader("Content-Length", "0");
            var header2:URLRequestHeader = new URLRequestHeader("Content-Type", fileMimeType);
            fileRequest = new URLRequest(fileURL);
            fileRequest.method = URLRequestMethod.GET;
            fileRequest.contentType = fileMimeType;
            fileRequest.requestHeaders.push(header);
            fileRequest.requestHeaders.push(header2);
            urlLoader = new URLLoader();
            urlLoader.addEventListener(Event.COMPLETE, onDownloadComplete);
            urlLoader.addEventListener(ProgressEvent.PROGRESS, onDownloadProgress);
            urlLoader.addEventListener(IOErrorEvent.IO_ERROR, onDownloadError);
            urlLoader.dataFormat = URLLoaderDataFormat.BINARY;
            urlLoader.load(fileRequest);
        } else {
            trace("All files have been downloaded.");
            wait_txt.text = "";
            status_txt.text = "All files were downloaded.";
            //show continue button
            btn_box_mc.btnLabel.text = "CONTINUE";
            btn_box_mc.visible = true;
            downResBtn.visible = true;
            downResBtn.addEventListener(MouseEvent.CLICK, onDownloadCompleteFunc);
            //saved download status in the local store
            MovieClip(root).setAssetsDownloadStatus();
    function onDownloadCompleteFunc(evt:MouseEvent):void {
        //downloads complete handler
        //start app
    function onDownloadComplete(evt:Event):void{
        //download complete handler
        status_txt.text = "Downloaded " + fileName + ".";
        //trace(fileName + " downloaded to " + File.applicationStorageDirectory.nativePath);
        var dataD:ByteArray = evt.target.data;
        //save the file
        var fileStream:FileStream = new FileStream();
        var dFile:File = File.applicationStorageDirectory;
        dFile = dFile.resolvePath(fileName);
        fileStream.open(dFile, FileMode.WRITE);
        fileStream.writeBytes(dataD, 0, dataD.length);
        fileStream.addEventListener(Event.COMPLETE, onSaveComplete);
        fileStream.addEventListener(ProgressEvent.PROGRESS, onSaveProgress);
        fileIndex++;
        //accumlated oize
        totalAccumulatedSize += curVideoAccumulatedSize;
        downloadNextFile();
    function onDownloadError(evt:IOErrorEvent):void {
        //download error handler
        trace("Error downloading " + fileName);
        wait_txt.text = "";
        status_txt.text = "Error downloading " + fileName + ".";
        //show exit button
        btn_box_mc.btnLabel.text = "QUIT";
        btn_box_mc.visible = true;
        downResBtn.visible = true;
        downResBtn.addEventListener(MouseEvent.CLICK, exitFunc);
    function exitFunc(evt:MouseEvent):void {
        //exit
        NativeApplication.nativeApplication.exit(0);
    function onDownloadProgress(evt:ProgressEvent):void{
        //download complete handler
        //trace("Progress: " + evt.currentTarget.bytesLoaded + "/" + fileSize);
        //var temp_txt:String = debug_txt.text;
        //debug_txt.text = temp_txt + "\nFile: " + fileName + " (bytes downloaded: " + evt.currentTarget.bytesLoaded + "/" + fileSize + ")";
        curVideoAccumulatedSize = evt.bytesLoaded; //file must reside on a server that doesn't gzip enabled
        var count:Number = fileIndex + 1;
        var perc:Number = Math.round(100*(totalAccumulatedSize + curVideoAccumulatedSize)/totalSize);
        var partialMB:Number = (totalAccumulatedSize + curVideoAccumulatedSize)/1048576;
        progress_txt.text = String(perc) + "% completed (" + String(partialMB.toFixed(1)) + " of " + totalSizeMB.toFixed(1) + " MB)";
        status_txt.text = "Downloading file #" + count + " of " + video_list.length + ":  "  + fileName;
        //progress bar
        progress_mc.width = 480*(partialMB/totalSizeMB);
    function onSaveProgress(evt:ProgressEvent):void{
        //save complete handler
        trace("Saving file... ");
    function onSaveComplete(evt:Event):void{
        //save complete handler
        trace("File saved.");
    function createVideo(fn:String, fs:int, mimetype:String):VideoInfo {
        //returns a video
        var assetsURL:String = "http://mywebsite.com/myvirtualdirectory/";
        var fURL:String = assetsURL + fn;
        var video:VideoInfo = new VideoInfo(fn, fURL, fs, mimetype);
        return video;
    function createVideoList():void {
        //creates the list of videos to download
        //populate video list
        video_list.push(createVideo("building2_1.flv", 1858694, "video/x-flv"));
        video_list.push(createVideo("building2_2.flv", 1905661, "video/x-flv"));
        video_list.push(createVideo("building2_3.flv", 1810634, "video/x-flv"));
        video_list.push(createVideo("building2_4.flv", 1994332, "video/x-flv"));
        video_list.push(createVideo("building3_1.flv", 1828362, "video/x-flv"));
        video_list.push(createVideo("building3_2.flv", 2550128, "video/x-flv"));
        video_list.push(createVideo("building4_1.flv", 2249678, "video/x-flv"));
        video_list.push(createVideo("building4_2.flv", 1301540, "video/x-flv"));
        video_list.push(createVideo("building5_1.flv", 3152689, "video/x-flv"));
        video_list.push(createVideo("building5_2.flv", 4258518, "video/x-flv"));
        video_list.push(createVideo("building5_4.flv", 1741195, "video/x-flv"));
        video_list.push(createVideo("building6_1.flv", 3295741, "video/x-flv"));
        video_list.push(createVideo("building7.flv", 1723062, "video/x-flv"));
        video_list.push(createVideo("district1.mp4", 1876220, "video/mp4"));
        video_list.push(createVideo("district3.mp4", 2087587, "video/mp4"));
        video_list.push(createVideo("district6.mp4", 2011591, "video/mp4"));
        video_list.push(createVideo("district8.mp4", 4870888, "video/mp4"));
         video_list.push(createVideo("global1.mp4", 2007542, "video/mp4"));
        video_list.push(createVideo("global2.mp4", 4148857, "video/mp4"));
        video_list.push(createVideo("global3.mp4",  3563990, "video/mp4"));
        video_list.push(createVideo("global4.mp4", 2452995, "video/mp4"));
        //calculate total size
        for (var p=0; p < video_list.length; p++) {
            totalSize += video_list[p].videoSize;
        totalSizeMB = 0.1*Math.round(10*totalSize/1048576);
        //start download
        downloadAllFiles();
    var fileName:String;
    var fileSize:int;
    var fileRequest:URLRequest;
    var urlLoader:URLLoader;
    var fileIndex:Number = 0;
    var curVideoAccumulatedSize:Number = 0;
    var totalAccumulatedSize:Number = 0;
    var totalSize:Number = 0;
    var totalSizeMB:Number = 0;
    var video_list:Array = new Array();
    //create list of files to be downloaded
    createVideoList();
    VideoInfo.as
    package {
        public class VideoInfo {
            public var videoName:String;
            public var videoURL:String;
            public var videoSize:Number;
            public var videoMimeType:String;
            public function VideoInfo(videoNameP:String, videoURLP:String, videoSizeP:Number, mimetypeP) {
                videoName             = videoNameP;
                videoURL             = videoURLP;
                videoSize            = videoSizeP;
                videoMimeType        = mimetypeP;

  • Touch Apps not available for Android tabs. Long live Apple

    So I buy the Samsung Galaxy Tab 7.0 Plus, use the official Samsung upgrade to Android 4.0.4 and STILL Photoshop Touch is unavailable for my device? Pathetic Adobe, just plain sad. You want to tell me EXACTLY what your app does run on?
    Wait, I know as I was told by your customer rep, "If I was a professional photographer I would be using Apple hardware."
    Adobe Cloud is just sad. Can't wait till next May when I can cancel my subscription.
    Does anyone know of an app that will work with layers?

    For running on an Android device the Adobe Touch Apps require an Android 8.9-inch display.
    From Adobe Touch Apps http://www.adobe.com/products/touchapps.html page you can reach the Tech Specs for each of the touch apps:
    Photoshop Touch http://www.adobe.com/products/photoshop-touch/tech-specs.html
    Proto http://www.adobe.com/products/proto/tech-specs.html
    Ideas http://www.adobe.com/products/adobeideas/tech-specs.html
    Debut http://www.adobe.com/products/debut/tech-specs.html
    Collage http://www.adobe.com/products/collage/tech-specs.html
    Kuler http://www.adobe.com/products/kuler-app/tech-specs.html
    iPad2 or later is required for the iPad.

  • Definitive answer? Touch apps on the Nexus 7

    Hello,
    I've been searching around now for a while but have not come to a definitive conclusion and would hate to waste my money on something that doesnt do the job.
    Some posts on here feature people complaining about the lack of support for the nexus 7, however the following video suggests Photoshop touch works on the device.
    Also, the following article suggests all touch apps work on the Nexus 7:
    http://robertoblake.com/blog/2012/07/google-nexus-7-will-change-graphic-design/
    I would really appreciate it if somebody could please offer up a definitive answer to the compatability of these touch apps on the Nexus 7 and hopefully you can help prevent me from wasting any money :-).
    Many thanks,
    James

    Hi David,
    Thanks for getting back to me.
    Do you know if Adobe would be happy for users to test the other software on their (currently) unsupported devices for the purposes of beta testing?
    It would be nice to see them supported at a later date and I would be happy to trial the software and provide feedback.
    Kind regards,
    James

  • Will Adobe touch apps be available through the Amazon Android store?

    I would love to try them out when my Kindle Fire arrives!

    Hi sp_josiah_sp,
    Not at this time. The Adobe Touch Apps require a compatible Android tablet running Honeycomb 3.1 or higher, and a minimum screen resolution of 1280 X 800. More info in the Touch Apps FAQ. I believe the Kindle Fire has a screen resolution of 1024 x 600, and runs a modified version of Gingerbread.
    Thanks for posting!

  • Adobe Touch App Plug-in for Photoshop CS6

    I need to carry on working on a file from my iPad 3rd Genration inside Photoshop CS6, however it seems a Plug-in is required and the only one I can find is for CS5. Does anybody know if this is currently available
    Forgot to mention CS6 is on the MacBook Pro OS X 10.7.4
    Thanks

    You can download the CS6 touch plugin form the main Creative Cloud installer page: https://creative.adobe.com/apps. See the screenshot:
    This will invoke the Adobe Application Manager where you can select to install the Touch App Plugins:
    Also check out the following video: http://tv.adobe.com/watch/learn-creative-cloud-/opening-touch-app-files-in-desktop-apps-/ which covers the process in a video tutorial.

  • I have an apple id for my ipod touch at home. My company is planning to issuing Ipads. Should I use the same apple id on the ipad for those apps I purchase and would like to purchase and use on my work ipad?

    I have an apple id for my ipod touch at home. My company is planning to issuing Ipads. Should I use the same apple id on the ipad for those apps I purchase and would like to use on my work ipad?

    Yes, otherwise you will have to pay for those apps again. If an app is purchased by one Apple ID, he/she will be able to redownload it again for no cost (note: this does apply to songs, but NOT to movies).

  • HT201371 More Apple id's with the same Touch ID possible? I have two Apple ID's, one for buying apps since the first iPhone and later, one for iCloud. Now with my new iPhone 5s, after installation Touch ID is connected to the iCloud one.

    I have 2 Apple ID"s, one for buying app's (since the first iPhone) in the store and another one for operating with iCloud things. Now, after installation/activation of my new iPhone 5s, the Touch ID is connected to the iCloud world. Conclusion, if I like to buy a new app. I still have to fill in the password for the other Apple ID. In the past I asked Apple to may join both, but that seems to be impossible.
    Anyone a solution?

    I am logged into the same things on both my iPhone and my MacBook Pro, except for mail. I use a gmail IMAP account and everything there already works on both machines. The iCloud account on my iPhone uses one Apple ID and the one on the Mac uses the second Apple ID.

  • TS1702 My sons ipod touch will not accept his apple id for facetime of messages. everytime we enter apple id it flips back to login or sign up page for both apps. Very frustating and I see others have the same problem but have no goosd answers how to reso

    Please help with advice on setting up facetime and messages on ipod touch. \When I enter the sign in apple id for both apps it just flicks back to the sign in or sign up page after verifying it.
    We have very strong internet, I have already rebooted and shut down and set up a new email account and changed apple id from y7mail to gmail and still it is not working.... super frustrating!! Hope you can help.

    Try This...
    Close All Open Apps... Sigh Out of the Account... Perform a Reset... Try again...
    Reset  ( No Data will be Lost )
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    More Info Here  >  Troubleshooting FaceTime
    http://support.apple.com/kb/TS3367

  • How do I get credit for Adobe Touch App purchases?

    I purchased two Adobe Touch Apps a few months ago: Photoshop Touch and Ideas. Today I subscribed to Adobe Creative Could and saw that I can get a month free by purchasing three Touch Apps. So, I purchased a third Touch App today, Proto.
    Okay. Now, how do I get credit for these purchases so that I can receive my one free month of Creative Cloud as advertised?

    Qualifying Touch Apps:
    Photoshop Touch - ios
    Adobe Ideas        - ios
    Adobe Collage      - ios
    Adobe Proto        - ios
    The process of activation would happen automatically when you login in the third touch app.
    And you will get notification of extension via email in next 60 days.
    Thanks
    Mandhir

  • HT204266 I have a iPod touch 4 and updated the iOS 6 and always when I try to search for an app in the App Store it won't let me because it always exits the App Store. Why is this happening?

    I have a iPod touch 4 and updated the iOS 6 and always when I try to search for an app in the App Store it won't let me because it always exits the App Store. Why is this happening?

    Have you tried resetting and restoring your iPod?

  • Is registration required for the touch apps?

    hey i have a quick question. how do you resgister any of the adobe touch apps? like proto, ideas, photo shop touch revel, readert. like how and wheres the searial number or is there none? i am guessing the ipad apps are differnt form the desktop apps. the reason i am asking is because a teacher and were trying to down load a adobe proto project file off of my adobe creative cloud accont, which is the free accounst, get started. anyhow. we were not able to load the file into the teachers adobe dreamweaver softwhare. even with the extension. so the teacher was saying that  i need to resgister the touch apps and mobile apps so i can get the updates i need that will alow me to do what  i need to do.

    thank you. um. i was able to email the proto file to myself in gmail. and for a reason. i followed what you said. i downloaded the file. and it opend up the zip file. as a folder. and in there was the css rules, and index. html file.  so what i am saying is it worked. also i am able to open it in dreamweaver cs4. but heres the thing  i noticed. it shows the file when openend in dreamweaver cs4 as a normal desktop doucument. why is that? but when prewviewed on the internt it shows up as mobile tablet doucment.. its interesting. um. i only had basic web design class for my photography associate degree program. but the reason i know about html is because i keep asking questions. and then start over and over again on a web layout. so after a while. i just got use to the knowledge.  so let me get this straight. html is html. and it can be open and edited on any web design program that supports html file reading. even including an older adobe dreamweraver program like cs4? the proto update i have for the ipad is 1.5. 
    other than that .thanks so much. adobe products is the best softwhare out there. keep it up... cant wait to use the future products.

  • Creating app for Android/Kindle with App builder and Single Edition (No professional or Enterprise)

    Hi there,
    I know there is no official support for Android in Single Edition, but, once you have installed Indesing CC and App Builder in a mac, and you create app from your Folio menu, is it possible to create then an Android/Kindle apk app for publishing by your own?
    Has anybody published sucessfully in this way?
    Other point, is that I suposse that you need a Professional or Enterprise licence to create an android app from the Web-enablet App Builder. Cause I can't find the way the make my single account to join the role to this function (And app builder website website just tells me I have to do this, as if I were able to do it with my license...).
    By the way, I think Adobe should explain more clearly this points. There is too much documentation, but difficult to find this answers... And a lot of people with the same troubles...
    Thanks!

    Thanks Tomek!
    So, can you confirm if you join the Professional edition (just for a month) if you are able to use both options App Builder/Web-Based App Builder, to create the app in a way that you don't need to be suscribed more time to Professional Edition to be downloaded by the users in Google Play/Kindle Store, and it should work for Applestore (iphone apps) too. I mean, once again, no using Multi-issue and Renditions, cause in this case I know they are hosted by Adobe and you need the subscription to be downloaded.
    I think there are discussions here about this topic, but it's not exactly clear what I'm asking. So, I still don't know if I should buy the Professional Edition or go to another supplier as you said.
    I hope that Adobe improve these functions! There should be native support for these platforms, cause at the end you only can publish to the applestore with the Single Edition and everbody knows the "too booky problem" with the apps. And we should have support to publish to ibookstore because of that too, without third party solutions. 

  • What apps is used for closing apps by 5-finger-touching  screen?

    Excuse me, I wanna ask about apps that easy use for closing apps or minimize it by touching together 5 finger at screen?
    Thank you.

    Hi ...
    Tap twice. Use this method to enlarge or reduce the display of a Web page or zoom in or out in the Maps app.
    From here >  http://www.dummies.com/how-to/content/how-to-use-the-ipads-touchscreen-interface .html
    You can post your question in the iPad community here for help from iPad users as well.
    This is the Mac App Store community for the Mac OS X.

Maybe you are looking for