TS3771 Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

Why can't I select "get info" from the file area so I can change the setting to "open in 32-bit mode" ?

It may be because of your settings. You can modify that setting in System Preferences > Trackpad. Another way of making right-click is to click the app icon while holding the Control key

Similar Messages

  • It is possible to get info from the PDF

    Hi Everyone,
    I'm new baby to acrobat using javascript. It is possible to get info from the PDF.
    The Info contain like Color space, Trim size, which font  used depend on pages and which color is used for image & text.
    Thanks in advance.
    -yajiv

    Hi GKaiseril,
    Thanks for prompt response.
    Actually I'm a new baby to Acrobat script. Please explain briefly How do I write java script and execute.
    I'm familiar with Photoshop and Indesign Script. We are using ExtendedScript Toolkit editor for writing script.
    Thanks in advance.
    -yajiv

  • How to get info from imported file in an outbound campaign IVR-based. UCCX 8.5.

    Hello.
    Somebody knows if it is possible to get the information inside my ivr script from the file imported when I create an outbound campaign IVR-based?
    I want to store in variable data like first name, last name, account number... And use them in the flow of my IVR script.
    I´m using UCCX 8.5.
    Regards

    did you get this to work ?

  • How do I get downloads from the internet to open in something other then text edit?, How do I get downloads from the internet to open in something other then text edit?

    Lots of times when I download files from the internet like games or something they will open up in text edit.  When it comes up its just a bunch of letters and numbers, it won't actually run the application.  How do I get the file to open up correctly and actually run?

    Hi, do you have a link to one of these you downloaded that does this?
    Basically you, in the Finder, do a Get Info on it, look for Open With & choose the proper application, but might these be Windows® only games?

  • How to print selected (highlighted) info from the internet

    For some reason, this mac has a hard *$$ time just printing what I want it to. I select something on the internet using command "A". Then I click command "P". The screen that gives printing specifications doesn't have a simple tab that says "print selection". How can I get this darn thing to simply print what I have selected?

    Hi,
    OS X isn't very printer friendly.
    Print Selection Service 1.0 (freeware on VersionTracker) will add a "Print Selection" choice to the Services menu in the Safari menu.
    http://www.versiontracker.com/dyn/moreinfo/macosx/24202
    John

  • Capture image and get info from flv file

    Hi everyone
    would apprichate help from any one who can tell me how and is
    their any batch software for win\linux that can prepare xml file
    with movie length and jpg\gif image capture of one of the frames
    (if i can set to to frame 20 and not 1 as dafualt) out of flv file.
    its for academic fms project and we have thousands of courses
    which we recorded and got them on flv, and need the data for the
    catalog.
    so - if any one can pls assist, got something ready or just
    tell me how to do it, we really will apprichate it.
    10x very much !

    FLVMDI will create the XML file for you (it will have
    additional nodes, but it will have the info you need). FFMPEG will
    extract the images for you.
    I'm not sure if either of those programs do batch
    runs.

  • I use CS6 and when I try to open a ai file from later version I'm told i must select a page from the PDF to open?

    I am following tutorials in Adobe Illustrator CC Classroom in a Book, but I use CS6. How can I open the lesson files to display correctly?

    I'm having further problems when I open these CC ai lesson files.
    All the swatches disappear.
    I had not realized there would be such compatibility issues between CS6 and CC.
    Yes I am warned when opening files craeted with later versions that there might be some "data loss" but this seems beyond reasonable?

  • HT201432 Open in 32-bit mode not in "Get Info"

    I don't see the option to "Open in 32-bit mode" in my "Get Info" window. How do I get that checkbox to appear?

    Looks like that particular pref. pane was written for PowerPC machines - you'd have to be running Snow Leopard or earlier for it to work at all
    You may want to switch to something that is still supported, like Onyx
    ~Lyssa

  • Two statements, get results from the first statement?

    Ok maybe I made it sound a little harder than it is, but this is what I am trying to do. I have a result set from from a database call when I pass in the username and password . In the 1st call I get the Users info: User_ID, first_name, lastname, etc...
    But I either need to get info from the first statement, and pass it to the 2nd statement or just do two statement calls calling the same info and passing it to my user object? I dont know which if any is faster, or better. The only thing I need from the first statement is the user_id. In the 2nd statement I need the user_id to find out the user permissions.
    Here is the original code when It was getting the user info and permissions from the same table. try
               dba = new DbAccess();
               java.sql.Connection con = dba.getConnection();          
    java.sql.DriverManager.getConnection("jdbc:oracle:thin:@kares:1523:appd","user","pass");  
               ps = con.prepareStatement("SELECT USER_ID, LAST_NAME, FIRST_NAME, LOGIN, PASSWORD," +
               "X, Y, Z FROM RD_USERS WHERE LOGIN=? and PASSWORD=?");
               ps.setString(1, user);
               ps.setString(2, pass);
               rs = ps.executeQuery();
               // set the user attributes
               if ( rs.next() )
                  loginValid = true;
                  setUserId(rs.getInt("USER_ID"));
                  setLastName(rs.getString("LAST_NAME"));
                  setFirstName(rs.getString("FIRST_NAME"));
                  setLoginName(rs.getString("LOGIN"));
                  setPassword(rs.getString("PASSWORD"));   
                  X = rs.getBoolean("X");
                  setX(X);
                  Y = rs.getBoolean("Y");
                  setY(Y);
                  Z = rs.getBoolean("Z");
                  setZ(Z);
               else
                  setLastName(null);
                  setFirstName(null);
                  setLoginName(null);
                  setPassword(null);
                  setX(false);
                  setY(false);
                  setZ(false);
               rs.close(); rs = null;
               ps.close(); ps = null;
               //dba.close(); dba = null;
            } The code above gets the info from one table, I now need to get the X, Y, and Z from a different table, but I need the USER_ID first. So, the first table is set up with the user_id and user info, and the 2nd table is set up with the user_id and user permissions

    Thanks DrClap I started on the the query and I did it a little differently, but it should hopefull do the same thing. my tables are constructed as so:
    USER
         USER_ID
         FIRST_NAME
         LAST_NAME
         USER_NAME
         PASSWORD
         ETC....
    USER_PERMISSIONS
         USER_ID
         PERMISSION X
         PERMISSION Y
         PERMISSION Z
         ETC....
    My Select looks something like this
    ps = con.prepareStatement("SELECT a.USER_ID, a.LAST_NAME, a.FIRST_NAME, a.USER_NAME, a.USER_PASSWORD," +
               "b.X, b.Y, b.Z FROM RD_USERS a, RD_PERMISSIONS b WHERE USER_NAME=? and USER_PASSWORD=?");
    This is where I come to a crossroads, Can I add on another AND to say "WHERE a.USER_ID = b.USER_ID
    and do I use the =, or is it ==, or .equals(). Thanks in advance.
    orozcom

  • Why can't I choose the application version via "get info" in the finder anymore

    Upgraded to Maverick and installed Indesign CC 2014 only to find Suitcase has not kept up with an upgrade so fonts are not opening. I would like to use Indesign CC (9.2.2) until the font issues are resolved but cannot choose the application version via "get info" in the finder anymore (it just reverts back to CC 2014 when I select CC). I prefer not to uninstall CC 2014 but will if that is the only option.

    We don't overwrite your apps so you can keep previous workflows. . Delete apps you don't want when you are ready.
    https://helpx.adobe.com/creative-cloud/faq.html#deskApps
    BLOG POST : http://blogs.adobe.com/jkost/2014/06/installing-the-2014-release-of-creative-cloud.html
    Creative Cloud Help | Install, update, or uninstall apps
    Hope it helps you.
    Regards
    Rajshree

  • I can no longer select "get info" it is grayed out

    Since upgrading to iTunes 11, most of my genres, song titles, etc. have been changed, and I cannot select "get info" to change them back.

    HI,
    This may depend on which version of iChat we are talking about
    Up and until iChat 4.x.x the OS had a System Preferences > Quicktime pane
    The Streaming setting in here needs to be at 1.5Mbps T1/Intranet/LAN (the Automatic and LAN/Intranet don't always work properly).
    You may not have enough internet Speed.
    http://www.speedtest.net/  This will measure Upload and Download speed (Based on what your computer can "See" of your Bandwidth if your connection is shared)
    The Upload is often Lower and is the controlling factor.
    It needs to be at least 256kbps (often reported as 0.256Mbps)
    Your OS may have "Lost Contact" with the camera
    Check in other apps to see if the camera works .
    8:43 PM      Friday; September 7, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Could you please tell me why as a Brit resident in Japan therefore having a billing address that is Japanese is forced to only get service from the Japanese online store? Is there not some way of allowing me to select movies and music to buy and download

    Could you please tell me why as a Brit resident in Japan therefore having a billing address that is Japanese is forced to only get service from the Japanese online store? Is there not some way of allowing me to select movies and music to buy and download from other stores. Why do am i forced to try to nread Japanese when I have selected English as my language. The price for Downloads is no different and even if it was I am happy to pay. This also applies to Movie rental which is crazy and extremely restrictive. I a supposed GLOBAL community why does Apple do this.

    You can buy ONLY from the itunes store of your country of residence (As proven by valid billing address of credit card) and ONLY while inside the borders of that country.
    These are the terms of the itunes store.

  • Itunes 10.6.1.7 problem: when I change the file "media type" from 'Music' to 'Podcast' the file disapears from ITUNES. I do this via (1) right click, (2) select 'Get Info', (3) select 'options' tab, and (4) change media type. What is the problem?

    Itunes 10.6.1.7 problem: when I change the file "media type" from 'Music' to 'Podcast' the file disapears from ITUNES. I do this via (1) right click, (2) select 'Get Info', (3) select 'options' tab, and (4) change media type. What is the problem?

    Hi Memalyn
    Essentially, the bare issue is that you have a 500GB hard drive with only 10GB free. That is not sufficient to run the system properly. The two options you have are to move/remove files to another location, or to install a larger hard drive (eg 2TB). Drive space has nothing to do with SMC firmware, and usually large media files are to blame.
    My first recommendation is this: download and run the free OmniDiskSweeper. This will identify the exact size of all your folders - you can drill down into the subfolders and figure out where your largest culprits are. For example, you might find that your Pictures folder contains both an iPhoto Library and copies that you've brought in from a camera but are outside the iPhoto Library structure. Or perhaps you have a lot of purchased video content in iTunes.
    If you find files that you KNOW you do not need, you can delete them. Don't delete them just because you have a backup, since if the backup fails, you will lose all your copies.
    Don't worry about "cleaners" for now - they don't save much space and can actually cause problems. Deal with the large file situation first and see how you get on.
    Let us know what you find out, and if you manage to get your space back.
    Matt

  • I a owner and administrator. I can't change any file permissions. Help tells me to 'get info' on a file, them click on the lock icon to enter password. The lock icon is not present on any files I 'get info' on. How can I change permissions

    I attached an external drive to my macbook pro for backup purposes. I found that the device is 'read only' for me. I read that I could change permissions by selecting 'get info' for a item and clicking the lock icon to submit my password. The lock icon is not displayed on any 'info' window for any file on my macbook, much less the attached drive. I am the only user and administrator as far as I know. What steps can I take to change permissions? Thanks. My 1st post.

    How can I tell? The 'get info' window has no lock and under sharing and permissions, on says 'you can only read'. I did a get info on the Macintosh HD and it had a lock on it but said I could only read, for what that it worth.

  • ITunes 11.2.2.3 crashes when I select "get info" on a song, iTunes 11.2.2.3 crashes when I select "get info" on a song, iTunes 11.2.2.3 crashes when I select "get info" on a song

    That... Everytime I click "get info" on a song iTunes crashes, but if I select more than one song and then select get info it doesn't crash... Help please, this is driving me insane D:

    You may have a corrupted webpage but you can try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your
         User/Home/Library/ Preferences folder.
    2 - delete iWeb's cache file, Cache.db, that is located in your
    User/Home/Library/Caches/com.apple.iWeb folder (Snow Leopard and Earlier).
    3 - launch iWeb and try again.
    If that doesn't help continue with:
    move the domain file from your Home/Library/Application Support/iWeb folder to the Desktop.
    launch iWeb, create a new test site, save the new domain file and close iWeb.
    go to the your Home/Library/Application Support/iWeb folder and delete the new domain file.
    move your original domain file from the Desktop to the iWeb folder.
    launch iWeb and try again.
    OT

Maybe you are looking for

  • Oracle 10g OLAP option

    Hi all Do we support creating a universe against an Oracle 10g OLAP database and how do we do this to report against OLAP data? I notice that there isn't an OLAP universe option for this, so I presume that if we can then we do this via OLAP SQL expre

  • BEA-382513: OSB Replace action failed: bad value for type element anyType

    Hello, in OSB I get this strange error message on my XQUERY TRANSFORMATION. *<faultstring>BEA-382513: OSB Replace action failed updating variable "response":* com.bea.wli.common.xquery.XQueryException: *Error parsing XML: {err}XP0006: "* *element {ht

  • IMAQ Read Barcode.vi

    Does anyone have documents or information on the algorithms used from IMAQ REad BArcode.vi? I need to write a report about my project and I dont know how the VI decode the barcode. Is there anyway I can find out? Best regards, Krispiekream

  • Thump / Pop noise when switching on / off Zen Stone Plus with Spea

    Hello, I just bought a 2Gb Zen Stone Plus with Speaker and I was disappointed by a very loud thump occurring when turning on/off the player. Moreover, starting with the player switched off, it is sufficient to press the on button (not necessarily unt

  • How to de-register ipad?

    how to de-register ipad?