My numbers program created on my mac version 3.0 won't work on my ipad version 2.0. It says I have to save the file with preview option but there is no such option in preferences. Any thoughts?

my spreadsheet created with numbers program version 3.0 created on my mac won't work on my ipad version 2.0. It says I have to save the file with preview option but there is no such option in preferences. Any thoughts?

For the update to run Aperture must be installed in the system Application folder and named simply Aperture, not Aperture3.2.2 or anything else.
I don't know if this would also affect photo stream but if your Aperture is misnamed or installed in an incorrect location fixing that to see if it clears up the problem would be a good first step.

Similar Messages

  • I accidentally selected "do note allow" Pages access to my photos. Now I can't insert photos. Message says go to settings and select Privacy - but there is no such option in the Settings. Help!

    I accidentally selected "do note allow" Pages access to my photos. Now I can't insert photos. Message says go to settings and select Privacy - but there is no such option in the Settings. Help! I want to be able to insert images in documents I create in the Pages app.

    Ok - I figured it out myself as soon as I posted this question. I went to my IPad settings - not the Settings in the Pages app. Problem fixed.

  • I need to create an action or script to save the file with the name of the selected layer

    I need to create an action or script to save the file with the name of the selected layer (not including the hidden layers, but including those visible).
    How could modify the script: 'Layer Comps To Files.jsx' to get the result?
    Warning: I do not need to export all layers as files.
    Who can help me?
    THX in advance

    Versione in Italiano (Further down the English version)
    NB - Nella versione inglese ho messo tutte le immagini dei menu in italiano.
    Versione per Mac, ma credo sia identico per Windows.
    Spiego passo passo cosa ho fatto:
    - Ho creato un file esempio con tre Livelli, salvato sulla scrivania e ho chiuso il file.
    - Ho aperto il file e selezionato il Livello al centro per iniziare a registrare una azione che ho chiamato: Save with Name of Selected Layer
    - Nuova azione
    - Dare il nome e premere Registra
    Ora salva…
    - Menu --> Livello --> Nuovo --> Livello... e premi -ok-, (lascia il nome che viene mostrato)
    - Ancora una volta Menu --> Livello... --> Nuovo --> Livello... e premi -ok-, (lascia il nome che viene mostrato)
    - Menu --> Livello --> Ordina --> Dietro
    - Menu --> Livello --> Unisci sotto
    - Menu --> Livello --> Unisci visibili
    - Menu --> Livello --> Nuovo --> Livello... e premi -ok-, (lascia il nome che viene mostrato)
    - Menu --> Livello - Nascondi Livello
    - Menu --> Elimina --> Elimina livelli nascosti (press -Yes-)
    - Menu --> Livello --> Nuovo --> Livello... Inserisci questo: 'Move this to the trash' e premi ok
    - Menu --> File --> Script --> Esporta Livelli in File... (Nella finestra che si apre scegliere l’opzione che si desidera, ma togliere il prefisso del nome) e premere -Esegui-
    - Selezionare il pannello Storia cliccare su Elimina premendo -Si- ogni volta che si apre la finestra di dialogo (Ripetere 8 volte questa operazione sino ad arrivare nella storia alla condizione di partenza. Ho visto che è meglio di Ripristina -F12-)
    - Fermare la registrazione.
    A questo punto, mandando in esecuzione questa Azione, ho raggiunto parzialmente l’obiettivo perché i file così creati mantengono, purtroppo, dei prefissi numerici per evitare probabilmente la sovrascrizione di file (credo senza avviso) nel posto dove vengono creati.
    Per ottenere l’obiettivo occorre un nuovo passo ed a proposito di questo riferisco quanto segue:
    ATTENZIONE - L’operazione descritta qui di seguito deve essere fatta su di una copia del file, per cui:
    - Duplicare il file,
    - Spostare l’originale in altra cartella
    - Lavorare sul file duplicato.
    mi riferisco a questo...
    ATTENZIONE - Questa modifica è effettuata a proprio rischio e pericolo ed il sottoscritto non si assume alcuna responsabilità su quanto venga fatto soprattutto da mani inesperte.
    ATTENZIONE - Questa modifica sovrascrive qualsiasi file che abbia nome uguale al layer che viene selezionato più l’estensione del file naturalmente.
    Comunque la modifica è banalissima e a portata di chiunque.
    Procedere così:
    - Chiudere Photoshop
    - Aprire (nel percorso specificato dall’immagine) il file “Export Layers to Files.jsx” (Export Layers To Files.jsx 1.0.0.16) con un editor di testo puro.
    - cercare la stringa (dovrebbe essere in riga 1029)
    var fileNameBody = fileNamePrefix;
    fileNameBody += "_" + zeroSuppress(i, 4);
    fileNameBody += "_" + layerName;
    - sostituirla con:
    var fileNameBody = fileNamePrefix;
    fileNameBody += layerName;
    - cercare la stringa (dovrebbe essere in riga 1047-46)
    var fileNameBody = fileNamePrefix;
    fileNameBody += "_" + zeroSuppress(i, 4) + "s";
    - sostituirla con:
    var fileNameBody = fileNamePrefix;
    fileNameBody += "";
    - salvare e uscire.
    - riavviare Photoshop
    - provare l’azione registrata facendo attenzione che il nome del layer non sia identico al nome di un file già presente altrimenti questo verrà sovrascritto.
    Domanda:
    Perché ho creato livelli che poi ho eliminato ecc.
    Risposta:
    Semplice per evitare errori di esecuzione delle azioni nel caso di operazioni con livelli mancanti o altro.
    Semplice... no?
    English version
    Mac version, but I think it's the same for Windows.
    First of all, I'm translating the actions that I made using the Italian version of Photoshop, you look at the position of the menu that I have chosen to do the work with other languages.
    I explain step by step what I did:
    - I created a sample file with three layers, saved to the desktop and I closed the file.
    - I opened the file and select the layer at the center to start recording an action that I called: Save with Name of the Selected Layer
    - New action
    - Give the name and press Save ( I think it is so in English )
    Now save ...
    - Menu -> Layer - > New —> Layer… and press -ok- , (leave the name that is shown)
    - Once again Menu -> Layer - > New —> Layer… and press -ok- , (leave the name that is shown)
    - Menu -> Layer - > Arrange (order) -> Behind
    - Menu -> Layer - > Merge Down
    - Menu -> Layer - > Merge Visible
    - Menu -> Layer - > New —> Layer… and press -ok- , (leave the name that is shown)
    - Menu -> Layer - Hide Layer
    - Menu - > Delete - > Delete hidden layers (press -Yes- )
    - Menu -> Layer - > New —> Layer… Enter this: ' Move this to the trash ' and press ok
    - Menu -> File - > Scripts -> Export Layers To Files... (In the window that opens select the option you want, but take away the name prefix) and press - Run -
    - Select the History panel and click Delete (on menu opened) pressing -Yes- every time when open the dialog box (8 times Repeat this step until you get into the story to the starting condition. Not use Restore -F12-).
    - Stop recording.
    At this point, by executing this action, I have reached the goal partly because the files created in this way remain, unfortunately, the numerical prefixes to avoid possibly overwriting of files (I think without notice) in the place where they are created.
    To achieve the goal we need a new step and thinking about this as follows:
    WARNING - The operation described below should be made on a copy of the file, so :
    - Duplicate the file
    - Move the original folder to another
    - Work on the duplicate file.
    WARNING - This modification is performed at your own risk and the undersigned assumes no responsibility on what is done mostly by inexperienced hands.
    WARNING - This change will overwrite any files with the same name as the selected layer plus the file extension of course.
    However, the change is trivial and within reach of anyone.
    Proceed as follows:
    - Close Photoshop
    - Open (in the specified path from the image ) file " Export Layers to Files.jsx " (Export Layers To Files.jsx 1.0.0.16) with a pure text editor.
    - Search for the string (should be in line 1029 )
    var = fileNameBody fileNamePrefix ;
    fileNameBody = + "_" + zeroSuppress (i, 4 ) ;
    fileNameBody + = "_ " + layerName ;
    - Replace it with :
    var = fileNameBody fileNamePrefix ;
    fileNameBody + = layerName ;
    - Search for the string (should be in line 1047-46 )
    var = fileNameBody fileNamePrefix ;
    fileNameBody + = "_ " + zeroSuppress (i, 4) + "s" ;
    - Replace it with :
    var = fileNameBody fileNamePrefix ;
    fileNameBody + = "";
    - Save and exit.
    - Restart Photoshop
    - Try the recorded Action, making sure that the layer name is not identical to the name of an existing file otherwise it will be overwritten.
    Question:
    Why I created levels which I then deleted etc..
    Answer:
    Simple to avoid errors of execution of the actions in the case of transactions with missing levels and other.
    Simple ... is not it?
    Sorry for my bad English...
    Thanks in advance for any hint.
    --->>> Please think about this... Adobe <<<---

  • IMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso

    iMac (27-inch, Mid 2011) 2.7 GHz Intel Core i5 4 GB 1333 MHz DDR3 running10.10.2 (14C1514). Trying to install Windows 7 64 bit from an install disc. When attempting to create an ISO image I can save the file in disk utility but can convert cdr to iso. I select the file and the hit return as in step 8 of the Creating an
    iSO image document but the box that should open to select use iso does not open. How should I proceed?

    The Mac SuperDrive built into your Mac is the Optical drive.
    1. Insert your Windows DVD in Optical drive. Disconnect any external storage.
    2. Insert a USB2 Flash drive. This will be used to hold the BC drivers.
    3. Start BCA. Check the options to download software and Install Windows. You do not need to download Windows. The BCA will download the BC drivers to the USB.
    4. Partition your drive.
    5. You can see the Windows installer screens at https://help.apple.com/bootcamp/mac/5.0/help/#/bcmp173b3bf2.

  • I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    That is because you don't have a web server configured and running to serve the html page. In order to see the page in a browser you need to access it using a url similar to http://localhost/~yourUserName if you are serving the page from your user account.
    Prior to Mountain Lion you could go into web sharing and turn on the web server. With Mountain Lion there is no option, other than using terminal, to turn on the web server. The web sharing menu item has been removed in Mountain Lion. Apache is still on your computer but it will take a little searching these forums or the Internet to find how to turn it on.
    If you want a graphic user interface to turn on/off the Apache server you could download and install a server application like xampp, http://www.apachefriends.org/en/xampp.html. I use this and it works well.

  • I can no longer directly print from the USPS print servelet. I now have to save the file and rename the extension to PDF load in another program to print. It used to be automatic. What happened?

    When trying to print from the USPS website (to print a label) when I click to pay and print instead of my print selection screen coming up I get the "Firefox doesn't know what to do with this" screen. THrough some web searching I found I can save the file, then change the extension to PDF and load it in another program and print but it adds two steps and is a real pain. Why would this have changed????

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See also "Disable virus scanning in Firefox preferences - Windows"
    * http://kb.mozillazine.org/Unable_to_save_or_download_files

  • 8g iTouch 4g. Two movies trying to download, they are 3.7g ea. I want to cancel them, but there is no such option!

    I have 5.4 gb free (because I recently did a restore, b/c these two movie downloads eventually take all my space!). I pause one movie download (to allow the other to finish) and that doesn't help.  I figure I can stop the one download right away, let one finish, then I can delete it, then let the 2nd one download, but it doesn't even download 1 of them!  It will come up with a space error, even though in iTunes it shows I have 5.4gb free...   I have read that I can stop the downloads by deleting the files from var\mobile\media\downloads, but that requires me to jailbreak, which I don't want to do.  Please help.  I think my only option is to wipe and setup as a new ipod, which I don't really want to do....

    Hi Cmcb,
    Under your Library list, you should see "Movies". Click on that, and you will see a screen with several tabs at the top - Rentals, Unwatched, Movies, Genres, Home Videos, etc.
    As Hackintosh indicated above, click on the Rentals tab, and your movies will be displayed there. Doulbe click on one to start playing it.
    If you do not have your sidebar showing, go up to View at the top, and click on Show Sidebar. Then you will see your Library lists on the sidebar, which will include Movies.
    Cheers,
    GB

  • I have a problem with two Apple ID's.  In the App Store help the only thing I can find is "If you're still having trouble, click Support in the Quick Links section." - but there s no "Quick Links" section, nor any support link.  Who do I contact?

    I guess the title said it all - I didn't know there was a body for a post (as I said, I've never had a support issue or problem I couldn't figure out).
    But what I have is two Apple ID's with different email addresses.  I'm sure the second one was set up by my son to buy a song a long time ago, while the first I probably set up when I got my first new Mac.  I've always used one, but my Pad started showing an authorization problem -  I'd reauthorize it and it was fine, but when I sync'd I got the same message.  Finally had time to dig into it and discovered one email address/ID is authorized for one computer and has zero balance; the other is authorized for FIVE computers (weird, since we only have two) and has a balance.
    I've purchased apps using the "no balance" account - but somehow the store is deducting payment from the ID with balance.
    I'm sure this makes no sense - so I just need to know who the heck to contact.  I'm not having much luck searching support documents.

    I guess the title said it all - I didn't know there was a body for a post (as I said, I've never had a support issue or problem I couldn't figure out).
    But what I have is two Apple ID's with different email addresses.  I'm sure the second one was set up by my son to buy a song a long time ago, while the first I probably set up when I got my first new Mac.  I've always used one, but my Pad started showing an authorization problem -  I'd reauthorize it and it was fine, but when I sync'd I got the same message.  Finally had time to dig into it and discovered one email address/ID is authorized for one computer and has zero balance; the other is authorized for FIVE computers (weird, since we only have two) and has a balance.
    I've purchased apps using the "no balance" account - but somehow the store is deducting payment from the ID with balance.
    I'm sure this makes no sense - so I just need to know who the heck to contact.  I'm not having much luck searching support documents.

  • I see that canceling membership seems to be a common issue. I have followed all of the steps that were given but there is no cancel option given to me. My account says I am on a 1 year free membership as a student yet I am being billed $19.99 every month.

    THE WEB SITE INSTRUCTIONS ARE POOR. THEY SAY TO CLICK THE STILL NEED HELP BAR BUT THIS CYCLES ME BACK TO THE FORUM? IS THERE A PHONE NUMBER WHERE AN ACCOUNT REP CAN HANDLE CANCELATION DIRECT
    Y?

    Moving this discussion to the Adobe Creative Cloud forum.
    Xxxhhhhgggg for information on how to cancel your membership please see Cancel your membership or subscription | Creative Cloud - http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html.  If you are not receiving an option to speak with a member of our support team then please utilize a different web browser, computer, mobile phone, or tablet.

  • It's kind of hard to "set up sync" when all the instructions and suggestions say "hit the set up sync button," BUT THERE'S NO SUCH BUTTON. What's up with that?

    Details? It's really simple: There's no "set up sync" button to be found in FIrefox 19 *anywhere*. And since all instructions begin with "Hit the Firefox button and then the 'set up sync' button..." it makes it kind of hard to get beyond "Hit the Firefox button"....

    Just to make note, I don't think it does make any sense to remove the "Set up sync" button after sync is set up. People (such as myself) might forget that they'd set it up, and searching (in vain) for the set up button. It *would* make sense to keep the button, but if sync had already been set up, have a message pop up that tells you so. (I'm just switching to FF, and so am stumbling around; still, this is discouraging.)

  • When trying to access music stored on my icloud i get the following warning 'This computer is already associated with an Apple ID'. itunes support say they have 'released' all devices associated with my account but i still have the same problem-any ideas?

    cant access music sored in my icloud when using my lap top. any ideas?

    iTunes imposes a 90 day wait period before a device can be associated with a different ID.  If iTunes support only removed all devices associated with your ID, this does not override the 90-day wait period.  From http://support.apple.com/kb/HT4627:
    "Removing a device from your Apple ID does not override the 90 day timer. The timer must complete 90 days from the day the device was associated before it can be associated to another Apple ID."
    Unless iTune support can override the wait period for you, you have no choice but to wait if you want to download it from iCloud.  If your purchases music is on any of your iOS deivces, you can transfer it to the iTunes library on your computer by authorizing your computer for the Apple ID(s) used to purchase the music (in iTunes, Store>Authorize This Computer), then connecting your device to your computer, opening iTunes, and going to File>Devices>Transfer Purchases.

  • I have downloaded the most recent version of pages and now  my computer is refusing to open my documents saying I have to download the latest version of pages

    I have downloaded the most recent version of pages and now my computer refuses to open my documents saying Ihave to download the most recent version of pages.  What can I do?

    Post the first 50 lines only of the crash report
    Regards
    TD 

  • HT5648 After uninstalling and installing several times, Java plug-in is still undetected. Support suggested I open up the control panel and click update but there isn't such an option. The advance tab, there aren't any options to enable or disable plug-in

    After uninstalling and installing several times, Java plug-in is still undetected. Support suggested I open up the control panel and click update but there isn't such an option. The advance tab, there aren't any options to enable or disable plug-ins.

    If you're running Java 7, then in System Preferences > Java > Java Control Panel in the Security tab there is a check box to enable Java in your browser. To check for update go to the Update tab.

  • I have photoshop C6 on my MAC Pro and want to install it on my new MAC desktop.  I sent the files with AirDrop but photoshop wont open I get an error message that it cant find the Library.  Any thoughts?

    I have photoshop C6 on my MAC Pro and want to install it on my new MAC desktop.  I sent the files with AirDrop but photoshop wont open I get an error message that it cant find the Library.  Any thoughts?

    download the installation files and install using your serial number or adobe id,
    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  12 | 11, 10 | 9,8,7
    Lightroom:  5.5 (win), 5.5 (mac) | 5.4 (win), 5.4 (mac) | 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.

  • TS1646 When I try to change my payment to the "none" option, there is no such option.

    Itunes keeps telling me that my security code is invalid when it is not, so I got on here and searched for a solution. I found one, but it had a flaw. It told me to change my payment option to "none." When I went to my account, there was no such option. This is a problem because I can't finish the process unless I complete that step, and I can't purchase any new songs on Itunes until I finish the process. Please help. I need to know what to do.

    bookyboo100 wrote:
    I go to my payment information and I can not change it none.
    None is not an option in all Countries and/or Regions.
    Suggest you Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for