Elements and Tablets

Does anyone know if you can upload your current Elements (vs 9) to a tablet as long as the tablet has suffient processor?  Does anyone know a specific tablet that will work? 

No tablet uses regular computer software. They all require software made just for them. The upcoming windows tablets may or may not be able to do this--microsoft seems to say contradictory things about how it's going to work. Adobe does have some tablet apps that can work *with* your computer, but not instead of. Adobe Nav, for example lets you control PSE 10 from your tablet as far as moving from image to image and using the tools, so you can use your ipad or android tablet (if the android version is out yet) instead of a mouse. And there's a photoshop express app that lets you use your photoshop.com photos.
But there's not a tablet in existence right now--not iPad, not Android--that can run regular PSE. A netbook can, with some reservations (no raw converter or advanced downloader dialog box, for example).

Similar Messages

  • Elements 12 and Tablets

    Has anyone been able to load Elements 12, standard or premiere, on to a Samsung Note 10.1 tablet?  Also, is there a way to move files from the tablet to a USB flash drive without using the cloud?  Thanks.

    See the requirements for Elements and Premiere Elements:
    http://www.adobe.com/products/photoshop-premiere-elements/tech-specs.html
    Your Android OS is not compatible as well as the other requirements.

  • I just bought photoshop and premier elements and I can not get it to run on Windows 8.1 Can anybody help?

    I just bought Adobe photoshop and premier elements and although photoshop and organizer run premiere will not.
    I have installed it twice with no errors and it still will not run. 
    OS Name
    Microsoft Windows 8.1
    Version
    6.3.9600 Build 9600
    Other OS Description
    Not Available
    OS Manufacturer
    Microsoft Corporation
    System Name
    CHARLIES_LAPTOP
    System Manufacturer
    Hewlett-Packard
    System Model
    HP ENVY 17 Notebook PC
    System Type
    x64-based PC
    System SKU
    G6U51UA#ABA
    Processor
    Intel(R) Core(TM) i7-4510U CPU @ 2.00GHz, 2601 Mhz, 2 Core(s), 4 Logical Processor(s)
    BIOS Version/Date
    Insyde F.12, 8/18/2014
    SMBIOS Version
    2.8
    Embedded Controller Version
    77.38
    BIOS Mode
    UEFI
    BaseBoard Manufacturer
    Hewlett-Packard
    BaseBoard Model
    Not Available
    BaseBoard Name
    Base Board
    Platform Role
    Mobile
    Secure Boot State
    On
    PCR7 Configuration
    Binding Not Possible
    Windows Directory
    C:\Windows
    System Directory
    C:\Windows\system32
    Boot Device
    \Device\HarddiskVolume2
    Locale
    United States
    Hardware Abstraction Layer
    Version = "6.3.9600.17196"
    User Name
    Charlies_Laptop\CHARLIES_LAPTOP\charl_000
    Time Zone
    Central Standard Time
    Installed Physical Memory (RAM)
    12.0 GB
    Total Physical Memory
    11.9 GB
    Available Physical Memory
    8.76 GB
    Total Virtual Memory
    23.9 GB
    Available Virtual Memory
    20.6 GB
    Page File Space
    12.0 GB
    Page File
    C:\pagefile.sys
    Hyper-V - VM Monitor Mode Extensions
    Yes
    Hyper-V - Second Level Address Translation Extensions
    Yes
    Hyper-V - Virtualization Enabled in Firmware
    No
    Hyper-V - Data Execution Protection
    Yes

    really
    Let us go through the usual drill on this...Premiere Elements 13 on Windows 8.1 (assumed 64 bit)
    1. Are you running the program from a User Account with Administrative Privileges? Go to Local Disk C/Program Files/Adobe/Adobe Premiere Elements 13, find the Adobe Premiere Elements.exe file, right click it, select and apply Run As Administrator from the pop up menu that appears, and then double click that file to determine if you can open the program from it.
    2. Does the problem issue exist with and without the antivirus and firewall(s) disabled?
    3. Are you working with a pen and tablet device instead of a mouse?
    4. How many video cards/graphics cards do you find under Device Manager/Display Adapters, what card name, driver date and up to date version number?
    When you say it will not run...how far into the program do you get...
    a. no further than the Welcome Screen and Video/New Project
    b. other
    If non of the above gets us anywhere, we may go for
    a. deletion of the Adobe Premiere Elements Prefs file and, if necessary, the whole 13.0 Folder in which it exists
    and, if necessary, then
    b. the uninstall, free ccleaner run through, and reinstall with antivirus and firewall(s) disabled.
    Details to follow if needed.
    We will be watching for your results and then decide what next.
    ATR

  • Drag and drop for PC and Tablet issues

    Hi!
    I’m doing a drag and drop for both PC and tablet.
    I need to allow any elements (draggables) to be able to drop into any of the droppable areas and not just restrict to 1 area. I tried using the if/else statement, but I can’t seem to make it work. For example, Position 1 (droppable area) must be accept all the cases – case1, case2, case3 (draggables), but only 1 draggable on a droppable at any one time.
    I hope you can help me out, or atleast helping me with the if/else statement.This is a link to my folder.https://www.box.com/s/0pksqtpmqg7zae43en66
    —————————————these are my codes, in case you can’t open the file.———————————————————–
    yepnope(
    nope:[
    'js/jquery-ui-1.9.2.custom.min.js',
    'js/jquery.ui.touch-punch.min.js',
    'css/jquery-ui-1.9.2.custom.min.css'
    complete: init
    function init() {
    var stage = sym.$(“Stage”);
    //DRAGGABLE. case1
    //var _1 = sym.$(“_1″); changed _1 to _2
    var _2 = sym.$(“_2″);
    _2.css(“position”, “absolute”);
    _2.draggable({ disabled: false });
    _2.draggable({ containment: stage });
    //for(var i=1; i<=9;i++){
    _2.draggable({
    snap: '.target1',
    snapMode: 'centre'
    //DROPPABLE
    var position1 = sym.$("position1");
    position1.css("position", "absolute");
    //     position1.css("left", 375);
    //     position1.css("top", 25);
    //position1.on( "dropout", function( event, ui ) {
    //drop into position1
    position1.droppable({
    accept: ".case1",
    drop: function(event, ui) {
    console.log(this.childNodes);
    var element2 = sym.$(".Stage_position1__1Black_Eagle_id"); //Stage_position1__1Black_Eagle_id
    element2.show();
    _2.hide();
    /*else if(_1){
    var element = sym.$(".Stage_position1__2Green_Parrot_id");
    element.show();
    _1.hide();
    // adds visual when correct drops here
    //case2. _5
    //DRAGGABLE
    var _5 = sym.$("_5");
    _5.css("position", "absolute");
    _5.draggable({ disabled: false });
    _5.draggable({ containment: stage });
    //for(var i=1; i<=9;i++){
    _5.draggable({
    snap: '.target2',
    snapMode: 'corner'
    //DROPPABLE
    var position2 = sym.$("position2");
    position2.css("position", "absolute");
    position2.droppable({
    accept: ".case2",
    drop: function(event, ui) {
    console.log(this.childNodes);
    var element5 = sym.$(".Stage_position2__5Black_Snake_id");
    element5.show();
    _5.hide();
    //case3. _7
    //DRAGGABLE
    var _7 = sym.$("_7");
    _7.css("position", "absolute");
    _7.draggable({ disabled: false });
    _7.draggable({ containment: stage });
    _7.draggable({
    snap: '.target3',
    snapMode: 'corner'
    //DROPPABLE
    var position3 = sym.$("position3");
    position3.css("position", "absolute");
    position3.droppable({
    accept: ".case3",
    drop: function(event, ui) {
    console.log(this.childNodes);
    var element7 = sym.$(".Stage_position3__7Green_Praying_Mantis_id");
    element7.show();
    _7.hide();
    });// end of codes
    Can anyone help me to figure out the if/else or switch statement to be used? I tried both but it doesn' work. This is my switch statement.
    var stage = sym.$(new bigElements) ;
    switch (bigElements) {
    //list down all the possible cases/scenarios.
      case "Stage__2":
              alert("Just like the sky!");
        break;
      case "Stage__5":
                  alert("Just like shiraz!");
        break;
      case "Stage__7":
        alert("Suit yourself then...");
        break;
      default:
        alert("lalala...");
    var stage = sym.$(new bigElements)
    switch (bigElements) {
      case "Stage__2":
        alert("Just like the sky!");
        break;
      case "Stage__5": //"case2"
       alert("Just like shiraz!");
        break;
      case "Stage__7":
       alert("Suit yourself then...");
        break;
      default:
         alert("lalala...");
    I've only included excerpt of the codes to let you have an idea of it. Thank you so much for your time.

    It seems like you're asking about JS for web-pages. This forum is about JS
    in PDF documents.

  • How to make editing desktop version automatically edit mobile and tablet versions

    Hello,
    I have a website that is currently under development, and I was wondering if there is a way for the Mobile and Tablet versions to automatically update, when I edit the Desktop version.
    Thanks,
    Jeremy

    If you're using Business Catalyst & Muse you can create a content holders .  Place the Module on each page, then simply update the content holder via BC Admin and all pages will be updated. If you're not using Business Catalyst then you will always need to update each layout element.

  • Muse Mobile and Tablet questions!

    Hi Everyone!
    I have a couple of questions:
    1. For one of my web pages I didn't make tablet layout. It's not an empty layout - it's not activated at all. That page is not visible on iPads. Is this because there is not tablet version and I need to make that or is that something else?
    Why desktop is not visible on tablets (iPad in this case - didnt try android yet).
    2. On mobiles, (layout is 380 pixels wide) android for example, when I open that site, pages are "too wide", I can move left/right a little bit, but when I tap twice it fits to the screen. I want to have everything nice on each mobile device without any action from the user. I heard about code to paste (viewport code): "<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"". I put this into page properties/metadata, was fine with vertical layout, but with horizontal viewing on mobile, things like full background photo slide show or other elements were displayed completely wrong. I didn't try to paste viewport code as a html in each page. Is that a reason for the problem, or is that something else? If not viewport code, what to do for universal page dimensions if something like that is possible to set at all?
    3. The last problem so far to me is, when I have some images in vertical layout on mobile, lets say it looks ok. Looking in horizontal, pictures are zoomed in, and they look blurry. I see same thing viewing some mobile templates for example at themeforest.net. What to do, to get nice sharp looking image on both layouts? Is responsive widget (different pictures depends on size displayed) the answer? I know about retina (retina@x2) images, but that probably would help just for retina displays. What to do to have nice sharp looking images on both layouts on mobile version? Probably same problem is viewing tablet site at different layouts, when horizontal will be zoomed in (stretched to the sides) to fill the browser window.
    I hope someone can help me.
    Do appreciate it!
    Luke.

    Preview in Browser and in multiple browsers
    De:  p_nath <[email protected]>
    Responder a:  <[email protected]>
    Fecha:  martes, 1 de octubre de 2013 19:14
    Para:  Elizabeth Montoya <[email protected]>
    Asunto:  mobile and tablet issues on muse
    Re: mobile and tablet issues on muse
    created by p_nath <http://forums.adobe.com/people/p_nath>  in Help with
    using Adobe Muse CC - View the full discussion
    <http://forums.adobe.com/message/5729930#5729930>
    Hello, Does this look pixelated in Preview or Preview in Browser and in
    multiple browsers? CheersParikshit
    Please note that the Adobe Forums do not accept email attachments. If you
    want to embed a screen image in your message please visit the thread in the
    forum to embed the image at http://forums.adobe.com/message/5729930#5729930
    Replies to this message go to everyone subscribed to this thread, not
    directly to the person who posted the message. To post a reply, either reply
    to this email or visit the message page:
    http://forums.adobe.com/message/5729930#5729930 To unsubscribe from this
    thread, please visit the message page at
    http://forums.adobe.com/message/5729930#5729930. In the Actions box on the
    right, click the Stop Email Notifications link.  Start a new discussion in
    Help with using Adobe Muse CC at Adobe Community
    <http://forums.adobe.com/choose-container!input.jspa?contentType=1&container
    Type=14&container=4761>  For more information about maintaining your forum
    email notifications please go to
    http://forums.adobe.com/message/2936746#2936746.

  • Sync my files between my pc phone and tablet

    how can i use my 2gb free creativ cloud to sync my files between my pc phone and tablet

    Mylenium,
    It works fine between my iPhone 4s PS touch and my Samsung galaxy note 10.1 with PS touch But not with my computer Windows 8 Adobe Photoshop  elements 11
    I dont see the cloud files on my computer
    Verstuurd vanaf mijn iPhone
    Op 18 aug. 2013 om 08:58 heeft Mylenium <[email protected]> het volgende geschreven:
    Re: sync my files between my pc phone and tablet
    created by Mylenium in Adobe Creative Cloud - View the full discussion
    What phone? What tablet? What files? You will have to explain better.
    Mylenium
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5604082#5604082
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5604082#5604082
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5604082#5604082. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Adobe Creative Cloud by email or at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Pin elements on tablet version. Cannot fix elements

    I think it´s very importat the posibility of fixing elements on phone and tablet version. Now it is disabled.
    It is the way to make a top menu and scroll just the content. I know very large fixed elements can produce problems but i see fixed top menues in a lot of mobile websites. There must be a way to do this.
    Thanks

    Sounds like a case of Single Edit Mode.
    From the Layers Panel, to the far right, click the panel properties icon. From the panel context properties list make sure Single Layer Editing is toggled off.
    h

  • How do I add a mobile and tablet site created in Adobe Muse to an existing website?

    Hi I have created a mobile and tablet version of an existing site in Adobe Muse and would like to add these versions without affecting the original site! is this possible?

    Are you planning to have separate URLs for desktops, tablets and mobile devices?  That seems like a logistic nightmare to maintain.
    Why haven't you re-built your desktop site with FluidGrid Layouts or CSS Media Queries in DW?  One site that works in all devices makes more sense.
    Example with FluidGrid Layout (re-size viewport):
    http://alt-web.com/FluidGrid/Fluid2.html
    Introduction to CSS Media Queries
    http://www.adobe.com/devnet/dreamweaver/articles/introducing-media-queries.html
    CS6 Fluid Grid Layouts (6 min video)
    http://tv.adobe.com/watch/digital-design-cs6/creating-adaptive-designs-using-fluid-grid-la youts-in-dreamweaver-cs6/
    Nancy O.

  • How to get the values of all elements and sub elements from  following xml

    how to get the values of all elements and sub elements from following xml...
    <?xml version="1.0" encoding="UTF-8" ?>
    <List_AML_Finacle xmlns="http://3i-infotech.com/Cust_AML_Finacle.xsd"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://3i-infotech.com/Cust_AML_Finacle.xsd List_AML_Finacle.xsd">
    <TransactionID>TransactionID</TransactionID>
    <Match>
    <Src_Matched_Field>Src_Matched_Field</Src_Matched_Field>
    <List_Matched_Field>
    <FSFM_Matches>
    <NUMBER>NUMBER</NUMBER>
    <TERROR>TERROR</TERROR>
    <TU>TU</TU>
    <NAMEU>NAMEU</NAMEU>
    <DESCRIPT>DESCRIPT</DESCRIPT>
    <KODCR>KODCR</KODCR>
    <KODCN>KODCN</KODCN>
    <AMR>AMR</AMR>
    <ADDRESS>ADDRESS</ADDRESS>
    <SD>SD</SD>
    <RG>RG</RG>
    <ND>ND</ND>
    <VD>VD</VD>
    <GR>GR</GR>
    <YR>YR</YR>
    <MR>MR</MR>
    <CB_DATE>CB_DATE</CB_DATE>
    <CE_DATE>CE_DATE</CE_DATE>
    <DIRECTOR>DIRECTOR</DIRECTOR>
    <FOUNDER>FOUNDER</FOUNDER>
    <TERRTYPE>TERRTYPE</TERRTYPE>
    </FSFM_Matches>
    <OfacMatchDetails>
    <UID>UID</UID>
    <TITLE>TITLE</TITLE>
    <SDNTYPE>SDNTYPE</SDNTYPE>
    <REMARKS>REMARKS</REMARKS>
    <ID_UID>ID_UID</ID_UID>
    <IDTYPE>IDTYPE</IDTYPE>
    <IDNUMBER>IDNUMBER</IDNUMBER>
    <IDCOUNTRY>IDCOUNTRY</IDCOUNTRY>
    <ISSUEDATE>ISSUEDATE</ISSUEDATE>
    <EXPIRATIONDATE>EXPIRATIONDATE</EXPIRATIONDATE>
    <ADDRESS1>ADDRESS1</ADDRESS1>
    <ADDRESS2>ADDRESS2</ADDRESS2>
    <ADDRESS3>ADDRESS3</ADDRESS3>
    <CITY>CITY</CITY>
    <STATEORPROVINCE>STATEORPROVINCE</STATEORPROVINCE>
    <POSTALCODE>POSTALCODE</POSTALCODE>
    <COUNTRY>COUNTRY</COUNTRY>
    </OfacMatchDetails>
    </List_Matched_Field>
    </Match>
    </List_AML_Finacle>

    avoid multi post
    http://forum.java.sun.com/thread.jspa?threadID=5249519

  • I have just purchased photoshop elements and premiere package. I tried to download them but it tells me the serial numbers are inapplicable. I notice the platform says windows and I am using a mac book pro.  It didn't give me an option when purchasing. wh

    I purchased Photoshop Elements and Premiere package today.  I have been trying to download them but it tells me the serial numbers are inapplicable.  I am using a mac book pro and I have just noticed that the platform in my receipt says 'win" .  I don't remember being given an option for mac or windows  when purchasing.  what can i do now?

    Return, cancel, or exchange an Adobe order

  • I am trying to pair my cell phone and tablet using Messages   App,  but only MMS messages will come through on my tablet.   I've tried pairing and unpaired,  reinstalling app on my tablet,  and can't figure it out.   Any idea how to fix this?

    I am trying to pair my cell phone and tablet using Messages   App,  but only MMS messages will come through on my tablet.   I've tried pairing and unpaired,  reinstalling app on my tablet,  and can't figure it out.   Any idea how to fix this?
    Thanks

    I Shared my most ridiculous situation but didn t log under your problem.
    sorry, I gave you your answer under sunshine99 or Dianna. I want out and you want in.
    if you not find just email me at [removed]
    thanks
    Personal information removed as required by the Verizon Wireless Terms of Service
    Message was edited by: Admin Moderator

  • What do i do with a very slow Photoshop Elements and Premiere Elements on a PC?

    I seem to be getting mixed opinions as to why my Adobe software gets so slow, despite efforts to avoid that, but my computer seems to be working just fine, it is only when in Adobe that the problems arise, like freezing, taking longer and longer periods of time to open the screen to edit a photo, or to compare two photos side by side.  Any process seems to take such a long time, and the freezing can last for several minutes, and then continue on.    I have had a computer person come to my house and examine my computer and though his knowledge of Photoshop is limited, he feels that it is NOT the computer but something with Adobe Photoshop.  I would tend to agree with him.   
    Several theories have been explained to me, such as Elements and Premiere Elements are a low end of the scale of Photoshop programs, so it is just not going to be able to process high definition large photos well and quickly.  Stating comments like i can only use 2 GB of my memory even though i have 8 GB, so unless i can use 64 bit this is what i have to deal with, and it is just a way for Photoshop to say you need to upgrade to the fancier programs.  I do not need fancier programs.  I am working hard to master these, and have accomplished 4 great blu rays in high definition thanks to recommendations from the Forum here, especially Steve with the help of his books. 
    Others say i need a solid state hard drive to solve the problem.  Others say the only way i will ever solve the problem is to switch to a MAC.  Others state is a mal-ware problem, but i have never had my hard drive so clean and uncluttered.  I supposedly have as good of PC as i could have as far as QUAD-core, 8GB memory, presently a 1 TB hard drive less than 1/2 full.   All suggestions involve big outlays of money, with no guarantee that things will be any better.  I have tried to contact different computer companies and computer 'nerds', and these are some of the suggestions, but no one really has a lot of knowledge of the Photoshop software. 
    I am thinking of adding an additional internal hard drive, but not sure that is going to help either.  Could i put all my Photoshop of the second hard drive, and might that speed things up? 
    Adobe is rather worthless in trying to get help from them.  I have spent hours on the phone waiting and then talking to someone who says they understand English but they do NOT understand the question i am asking, which becomes very frustrating with repeat phone calls.  I gave up yesterday trying to do that challenging experience yesterday after i had spent 3 times the amount of time they said i would need to wait to get a reply, and i was at work, and my free time had come to an end.  So i am hoping you guys can give me some clues of the best thing to do.
    Is it true that Photoshop Elements and Premiere Elements are just such a lower end program that trying to do things in high definition, with 2000x1500 photos, making them into a blu ray disc is a major challenge with a PC?  I wish i had a greater computer knowledge, but i have struggled to achieve my goal, but the speed of it all gets very frustrating, though it is possible. 
    Another question asked which i don't think exists, is whether there is a program that could clean up Photoshop, or are there some clues that could accomplish that and thereby speed things up.
    Would appreciate any suggestions anyone has.  I am in the middle of another project so now is probably not the best time to consider any major changes.  But any comments would be appreciated.
    Ron

      Premiere Elements 10 is now 64 bit, but not PSE10.
    Take a look at your scratch disk set-up and if you have a spare volume, allocate that first before the C drive. Elements use scratch disks when it gets low on RAM.
    Click image to enlarge
    Turn off face recognition and the auto-analyzer to improve performance.
    When editing photos or videos check the task manager to see what background processes may be running and end them temporarily if not needed.

  • How do i uninstall new version of Elements and reinstall on external hard drive.  My PC is crashing

    How do i uninstall new software for Elements and be able to reinstall on external hard drive .Message on Wizard say I can not reinstall once I uninsall. I need to remove it from my PC. There is not enough disc space and it is crashing.

    It's really not clear what you are trying to say. You need to explain better and provide more info.
    Mylenium

  • When I open up an album in Photoshop Elements and then click on a picture to upsize it, it comes up blurry.  I'm using a Mac.

    Question???  When I open up an album in Photoshop Elements and then click on a picture to upsize it, it comes up blurry.  I'm using a Mac.

    Make sure Readr is closed. Go to the Applications form, look for the Adobe Reader icon, double click on it, and follow the lead. Restart Reader when finished.

Maybe you are looking for

  • CS6 Error installation on mac

    Hi, I need help, we are getting an installation error when we try to install CS 6 on Mac. We tried all possible troubleshooting like making sure no existing CS suite, on mac security to allow to download and install "ANYWHERE". Tried installing Adobe

  • Need to count the number of times the Basic Finish data chages

    HI Expertes, I have a requirement I need to count number of times the Basic finish date chaged for PM work order. I went throug our forums I got some info like using a standard function module CHANGEDOCUMENT_READ_HDRS_ONLY CHANGEDOCUMENT_READ_HEADERS

  • Base amount is zero

    Dear all,. While c pturing invoice , Base amount is calculated as Zero. Tax is getting calculated in PO. Migo is not yet done. TAx procedure is TAXINN. pl help. Prabhash

  • How can I get rid of the "hoax" Firefox window telling me to upgrade?

    Every time I open Firefox 3.6.13, I get a window which tells me I'm running an old version and should update. Googling this, I found out it's some kind of hoax. It's really irritating and I'd like to find a way of preventing it from opening. Any idea

  • ORA-04091: table is mutating in a scenario

    Hello everyone I have a scenario like this: There are 2 schemas USER1 and USER2. There is a table (say STATUS_TABLE) with similar structure in both the schemas. In a certain scenario USER1 needs to tell USER2 about a flag which needs to updated in US