Importing and Saving Problems

Hello,
I need help with getting my AE 7.0 Professional Version to work. It will not allow me to import and save my work.  Does some know what the issue may be?
Here is what system I am using:
MAC OSX 10.6.8
2.33 GHz Intel Core 2 Duo
2 GB Memory
After Effects
Student Version 7.0 Professional

Hello Rick,
I tried to locate the correct Rosetta download for OSX 10.6.8 and I was not able to find it.  I tried downloading the Rosetta for OSX 10.6.3 and it would not work with newer versions.    Do you know where I can find this Rosetta Download or is there another option you might know about?
Ben

Similar Messages

  • Data importing and exporting problem between BADI's

    Hi Experts,
    I am facing a problem in importing and exporting the data between badi's.
    I am able to import and export the data between DOC CHANGE and DOC CHECK BADI's etc; but now i have a requirement to map a field from SRM to R/3.
    Supplier order key field which is added to the basic data section of Shopping Cart should be mapped to the corresponding fields in R/3. I have added the field and when i am trying to map it to R/3  i am facing the probelm.
    This Supplier order key field will be coming from ZBBP_CATALOG_TRANSFER badi and i am trying to map it in the Z_BBP_CREATE_PO_BACK Badi; i tried by using the below statement to export a single parameter to PO BACK badi from CATALOG TRANSFER Badi
      EXPORT zsupp_ord_key FROM zsupp_ord_key TO MEMORY ID 'Z_SUPP_ORD_KEY'.
    which is not working.
      IMPORT zsupp_ord_key TO zsupp_ord_key FROM MEMORY ID 'Z_SUPP_ORD_KEY'. in PO BACK BADI.
    Can any one please let me know why this is happening?
    And i have strange problem in this ...
    when a user copies a catalog which is already created then we can not map the field to R/3 PO
    and again if he tries to create a cart by selecting "Old carts which are already created" we cant map field for the above two things to happen i think we need a custom coding .....
    Thank you
    Lokesh.

    Hi Lokesh,
    BADI implementations have classes for which an instance is created at runtime and hence the import and export memory logic will not work.
    Please try to create a function module for these BADI and call them in these BADI's. Then go ahead with the import and export logic. This could help.
    I would rather advice, to figure out an option to avoid this memory manipulations.
    Regards
    Kathirvel

  • Various bugs – Library view issue / import and copy problem / unsupported paths message

    In addition to the issues reported in a separate thread regarding importing video, there are several other bugs that are preventing me from progressing on a project and/or indicate instability in Edge Animate.  These issues don’t occur on new projects (yet), but are present in my current composition.
    I'm using the latest version of Edge Animate CC 2014 (2014.1.1) on a Windows 8 Pro (fully updated) system.
    Issue 1 – Library View
    For all the assets that have been imported, when I twirl down to view the thumbnail of each asset in the Library, nothing appears in the thumbnail area.  In earlier iterations of this project, all the items appeared correctly, but now nothing is there for any of the assets.  See sample below of what should appear (and what was there before), and what’s there now (nothing).
    Issue 2 – Asset Import Problem
    When I try to add an already imported image asset to the stage (or try to import a new image asset in the project), the item doesn’t appear properly – it just comes in as a dot with no height or width.  See samples below of what the imported asset looks like on the stage and its size information.
    Assets that were imported and placed before this bug occurred are still visible on the stage. But, if I copy one of these assets, the copy retains the size information, but does not appear at all. See sample.
    Issue 3 – Unsupported Paths message
    When I close the project, I get an unsupported paths message.  See sample.
    Despite this message, the assets appear in the project from within Edge and are present in the project if I open/preview the HTML file in my browser.
    Since these three issues relate to project assets, perhaps they are related.  I can provide a link to download this project if you like. Any help would be greatly appreciated!

    Hi Avinash,
    I'm glad you received the (large) project.
    In the meantime, I installed Edge Animate on another system (OS - Windows 8.1).  The Edge project exhibits the same problems on the other system.
    Thanks for looking into this!
    Regards,
    - Joel

  • Loading and Saving problem in 2D space based rpg

    I am implementing a system in which the game saves the offset of the default position of an object in space and the object's position when the game is saved and applying that to the objects when the game is loaded. I get a strange problem however where every other undock after loading the game is far far away in space. I think it has something to do with the saved position of the object you docked with. Here is the code involved in loading the game (it just calls IO.java via dataAgent and gets data from a file)
    public void loadGame() throws FileNotFoundException, IOException {
            //load the game
            String[] tmpData = null;
            tmpData = dataAgent.loadGame();
            //interpet the data
            hud.currentDockedCelestialObject = Integer.parseInt(tmpData[0]) - 1;
            player.currentWallet = Integer.parseInt(tmpData[1]) - 1;
            player.currentSolarSystem = space[hud.currentDockedCelestialObject].solar;
            hud.renderMode = 1;
            hud.player = player;
            hud.space = space;
            hud.dPressed = true; //tell HUD we are docked at something
            //now we need to determine the position of all the celestial objects based on the saved position of the object in question
            int tmpx = Integer.parseInt(tmpData[2]) - 1;
            int tmpy = Integer.parseInt(tmpData[3]) - 1;
            //compare it to the docked celestial
            int changex = space[hud.currentDockedCelestialObject].positionX - tmpx;
            int changey = space[hud.currentDockedCelestialObject].positionY - tmpy;
            //apply the offset to all the objects in the current solar system
            for (int i = 0; i < space.length; i++) {
                if (space.solar.matches(player.currentSolarSystem)) {
    space[i].positionX += changex;
    space[i].positionY += changey;
    //now we need to load the ship type
    player.ship.type = Integer.parseInt(tmpData[4]);
    //configure the shields and hulls
    configureLoadedShip();
    //finish up
    hud.space = space;
    hud.player = player;
    Configureloadedship() just makes a call to apply the correct weapons and armor to the ship you have. Here is the saving code:public void saveGame() {
    //saves the game
    String[] toSave = new String[5];
    toSave[0] = "" + (hud.currentDockedCelestialObject + 1);
    toSave[1] = "" + (hud.player.currentWallet + 1);
    toSave[2] = "" + (space[hud.currentDockedCelestialObject].positionX);
    toSave[3] = "" + (space[hud.currentDockedCelestialObject].positionY);
    toSave[4] = "" + (hud.player.ship.type);
    try {
    dataAgent.saveGame(toSave);
    } catch (IOException ex) {
    Logger.getLogger(Main.class.getName()).log(Level.SEVERE, null, ex);
    Adding and subtracting 1 durring load and save solved the problem of the java file reader skipping the 0 values in the first few lines of the saved game file.
    The game is loaded when the game starts and saved when you dock.
    Ty in advance for your help.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    public String[] loadGame() throws FileNotFoundException, IOException /*should never be thrown*/ {
            String[] toReturn = null;
            //load the data
            FileReader read = new FileReader(data);
            BufferedReader buff = new BufferedReader(read);
            String tmp1 = "";
            String tmp2 = "";
            while((tmp1 = buff.readLine())!=null) {
                tmp2 = tmp2 + tmp1+"~";
            //break it into a usable form
            toReturn = tmp2.split("~");
            System.out.println(tmp2);
            return toReturn;
        }and
    public void saveGame(String[] toSave) throws IOException {
            FileWriter write = new FileWriter(data);
            BufferedWriter buff = new BufferedWriter(write);
            //clear the old file
            data.delete();
            data.createNewFile();
            //zap the data to the file
            for(int i = 0; i < toSave.length; i++) {
                buff.write(toSave);
    buff.newLine();
    //write
    buff.flush();
    }They are basically just buffered readers and writers.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • FHMX Crashes When Importing and Saving

    I am using one of the 24" iMacs and FreeHand crashes whenever
    I Save As (it doesn't happen when I save over a file that I've
    started and saved previously). I am also trying to save directly to
    a Network drive. It doesn't crash as much when I save to my
    desktop, but it HAS done it, so I don't know if it has to do with
    the Intel Processors, the version of Mac OS, or the fact that I'm
    saving to a Network, or something that I haven't thought of.
    It also crashes when I try to import items into a FH
    document, regardless of where those files are saved.
    If anyone has any suggestions or advice, please let me know!
    I have a major project due today and I can't afford to waste any
    time on crashes! Thanks!!!

    Hi watermelonpatty!, I don't have much experience with the
    new intel macs so this is not a solution to the 'save as" crashes,
    but here's a couple of ideas that could save you from losing your
    work:
    1. before you try to save the file, you could use export to
    save the freehand file first just as a safeguard.
    2. if you drag and drop items directly from the finder into a
    FH page does it crash?, if not you could use this method for the
    time being until you find a more permanent fix.
    hope this helps

  • Loops and saving problems

    Hey,
    I am having a problem saving my data. I have a program that simulates a tap. Essentially a certain voltage will trigger the data to be collected. To present it to everyone in this forum I have just simulated this effect. If the button is turned on then it will pseudo randomly trigger the first inside loop. 
    Here starts the problem. When the first inside loop is triggered the graphs show the resulting data and a box pops up asking if you want to save this data. Well everything time I click yes it won't save.Then the next time the first inside loop is triggered the save dialog box pops up to save the current data. It is really weird. If you want to see what I am talking aobut please run the program and click yes you want to save a couple times and I think you will start to understand my problem. 
    Essentially I want to be able to see the results of the data and decide if I want to save it or not. If I choose yes then I would like to name the file path.
    I have looked at this for hours and can't come to any conclusion why this is happening. Maybe a flow or loop issue?
    Please note, the outside loop should always be on to keep the program continuous.
    Thanks for any help on this
    Solved!
    Go to Solution.
    Attachments:
    newtapsimulateddicussion.vi ‏285 KB

    Hova wrote:
    @ altenbach which inner loop are you referring to?
    There are only two while loops: the outer loop and the inner loop. Why are you confused?
    Hova wrote:
    ... in Labview flow moves top left to bottom right correct?
    NOOO!!! You are incorrect. The execution order is completely independent of the diagram coordinates.
    The important word is "data dependency". In your code, the dialog and the while loop can execute in parallel, because they do not depend on each other. If you would place any of the inputs to the dialog inside the inner loop (e.g. as in the picture), the dialog now depends on data from the while loop and thus cannot start until the loop has finished.
    Play around with execution highlighting to get a better feel for all that.
    You can un-mark the solution via the options menu of the post. Have you tried?
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    LoopDataDependency.png ‏7 KB

  • IMPORT and EXPORT PROBLEM

    Hi All
    I have a problem.I need to export the data and then import it inot another database.I used imp and exp file but it is not exp and imp data but exp and imp database structure,triggers,procedure etc but not data
    Please tell me how should i proceed.
    Thanx
    Manoj

    When you export, it will list all of the table structures that you are exporting. You can limit some of the other information that it exports by setting parameters.
    I assume that the database you want to import into already has all of the table structures and grants.
    When you export, set the following parameters:
    GRANTS=N
    INDEXES=N
    CONSTRAINTS=N
    TRIGGERS=N
    The default for exporting data is Y so you don't need to include that.
    It will still export the table structures but you can ignore them on import.
    Then on import, set the following parameters:
    GRANTS=N
    INDEXES=N
    CONSTRAINTS=N
    IGNORE=Y
    The default for importing data is Y so you don't need to include that.
    That will import data and not import table structures unless there is a new table in the database that you export from.
    Another option that might help is to export by using a table list. This will eliminate the issue of export procedures.

  • Aperture import and desktop problem

    My Aperture main screen had changed and can not be fully used, as some pictures are not vissible in the browser view. As well the picture if shown in full screen in the main screen is not shown properly - 1/4 on the right side is missing.
    Today I realized, that the missing 1/4 of the working desk is impacting the import - the menu to put create new project and all the data of the picture is missing - so totally impossible to import new pictures.
    Does any one know how to adjust the desk in Aperture and show/hide the importing dialogues?
    help appreciated.

    Hello Milo,
    a similar problem occured recently, see this discussion.
    The problem could be solved by removing the preferences file to the Desktop and restarting Aperture, for Aperture stores the layout of the main window in this file.
    The preferences file is ~/Library/Preferences/com.apple.Aperture.plist
    That file is in your User Library.
    Quit Aperture, if it is running,
    To reveal the hidden User Library in Lion, activate the Finder by clicking on the Desktop, then go to the main Finder menu at the top of the screen, and select the menu Go -> Go to Folder.
    in Lion now hold down the alt-or-option key, and your User Library will appear in the Drop down menu. Select it to open in Finder. (in other MacOS you can access your User Library by opening your Home Folder from the Finder Sidebar).
    Once your User Library is  revealed in the Finder, navigate to the sub folder "Preferences" and scroll down the long list, until you find
         com.apple.Aperture.plist
    move it to the desktop.
    Log off and log on again.
    restart Aperture and see, if the fix worked.
    And please, post back and tell us, if you were successful
    Regards
    Léonie

  • Importing and saving

    When importing DV from my camcorder how do I get it to import straight to my external Hard Drive. Becuase I would like to do video editing and movie making without using ANY space on my internal hard drive. EVERYTHING on the external Hard Drive. And what size external hard dirve would you guys reccomend for my purposes. I'm on a budget. Thanks

    When you create new project, just point the new project to be saved on your external HD.
    PS : you must mount your external HD first to give the saving option to that external, and make sure it is turn on and mount everytine you open your iMovie.
    Any external HD size above 100 Gb would do good, try to get one with 7200 rpm and cache 8 or 16 mb. But it depend how long and how many tape you want to import.
    I used to import two mini dv tape for two hours of material of project tbefore edit it to my smallest 160 Gb HD without any glitch.

  • Page and group Import and export problems

    we are migrating from portal 3.0.6
    (part of ias 1.0.2.0.1)
    to
    3.0.8(part of iAS 1.0.2.1).
    OS:Solaris 2.6
    The exports from 306 works fine.
    when i imported security data for users and groups(secimp.csh) it swapped the users for two groups
    i get the following error when i try to import pages
    ERROR at line 1:
    ORA-06510: PL/SQL: unhandled user-defined exception
    ORA-06512: at "PORTAL30.WWUTL_POB_TRANSPORT", line 1879
    ORA-01403: no data found
    ORA-06512: at line 6
    Anybody has this problem?
    Thanks
    null

    Hmm.. export/import only works between portal installations at the same version level. What you need to do is to use the upgrade scripts that will take you from Portal 3.0.7 to Portal 3.0.8, which are not available yet. We hope to make these scripts available in a couple of weeks on OTN. (Yes.. I too am waiting for these scripts).
    Best Regards,
    Harry Wong

  • HT2523 Word docx file conversion and saving problems

    I've recently switched back to Mac after many years as a Windows user. I was delighted to be able to open my Word documents in TextEdit, but have had to reformat certain parts of the documents (specifically, bullets, tabs, and wrap to page) EVERY TIME I open the document. These are not saved in the file. I'm happy to change the format of the documents to rtf or whatever to keep the changes, but can't figure out how to do that either. The ultimate format for these docs is PDFs, so I don't really wish to buy MS Office for Mac. I can't find anything about this in TextEdit help.

    In support of your advice ....
    Preview will open directly .doc/.docx Word files. The path to PDF can also be through the Export facility.
    Preview is only as good as Pages when attempting to open Word documents. If the OP has complicated Word documents that will not open with Preview, then a suggestion is to download and install the free LibreOffice 4.x (libreoffice.org) application. This will certainly open Word documents.
    Rather than learn LibreOffice just to convert PDF, the OP can use the following Terminal command:
    Terminal:
    /Applications/LibreOffice.app/Contents/MacOS/soffice --headless -convert-to pdf:writer_pdf_Export sample.docx
    This will write out a PDF of the input file to the current directory. Providing *.doc or *.docx on the command-line will convert all files matching this description to their PDF counter-parts. There is a --outdir argument that given a path to a directory, will place the resulting PDF there for improved organization.
    The above command does not visibly launch LibreOffice. The only output is a single line to the terminal indicating that the conversion has taken place.
    Cheers.

  • Illustrator CS6 opening and saving problem. Please help

    Hello
    I have Illustrator CS6 installed on windows 8.1. Every time I save a file as ai. format, it will automatically create a copy on the desktop. When I deleted the copy and try opening the original file, the error message "The file is an unknown format and cannot be opened" pops up. I've checked that the file is not "read only", deleted the pref files and even reinstalled Illustrator CS6 but none of these have solved the problem. I have also noticed that I cannot copy or rename the file as the same error message pops up. Any solutions? please help

    (1) When I go to open files, raw or jpeg, I now need to enter a value for 'enable' on the open dialog.  That never was necessary before.
    Could you please post a screenshot with the pertinent Panels/Dialogs visible?
    (2) When I go to save as jpeg, the file type defaults to eps. 
    So you select jpg from the dropdown list and it switches to eps?

  • CD importing and syncing problems

    I imported a CD into my library but everytime I try to put the music onto my phone it says "Updating File" but stops after like a second. There's also a dotted circle next to the songs but I made sure there's sufficient space on the phone and the manage music manuallly box is checked.

    You need to let the matching process work on the new tracks before trying to add them to a playlist. This error indicates that the music wasn't "in the cloud" yet. The process should kick off automatically within a few minutes of importing any music but if it doesn't pull down Store > Update iTunes Match. After the process finishes you can then add the tracks to the playlist.

  • Import and export problems!

    I'm new to Aperture so bare with me please, I'm using the cannon Rebel XT, I noticed ( after an update I'm thinking) that when I wanted to import from the camera the frames were randomly placed, and when I click X to close and then click import again they would be in order, I called about this and the speaker said, well it seems like you have it working, I was hoping that with a new updates this would be fixed,( like it did with contact sheet) then I wanted to export a project to a RW-CD the same thing happen when checking the CD the Image were randomly placed and very unprofessional, Can anyone help me with this? Should I reinstall the aperture program?
    mac book pro   Mac OS X (10.4.8)  

    Hi Billy,
    No, don't reinstall Aperture, though do consider trashing the plist file:
    user/Library/Preferences/com.apple.Aperture.plist
    This will not break anything, but you will need to reset your preferences when you relaunch Aperture. So, note them down first.
    Are the images out of order in the IMPORT viewer or after you import into a project?
    If in the IMPORT viewer, then I have no clue.
    If in the Project viewer,check to see whether the sort order is image date or custom or version name. Image date is usually good.
    I'm not sure about the export side, as file order is (typically) seen using Finder, based on which column you wish to sort on. Does clicking the Name or Date column heading give you the desired result? Or are you seeing the order through some other means? Please explain.
    Thanks,
    G.

  • Sony TD10, MVC files, 3D, Importing and Saving - your thoughts?

    Hello, new to the forum but over the past year I've been collecting bits and pieces and now finally have a 990X cpu with 3XGTX 580's and Premiere Pro...Ya, what did I get in to..., well something to keep my mind busy.
    Anyway, Just got my TD10 and a Bloggie too, but looking to see if there is any updates on importing, but more importantly, being able to save the interlaced file that I'm pulling out of my Sony.  Will I need to purchase the Cineform 3d Neo program?  I've downloaded the plugins but not sure if that is enough.  I just Dave Helmly's "Stereoscopic Workflows for Premiere Pro CS5" and will check that out in a bit.
    I have been able to get the files off the TD10, edit a bit and combine with Sony's PMB, then play in 3d with Cyberlink's player with my NVidia glasses, pretty cool.
    I see there is a couple posts on this topic inside here but they are 2 months old.  I'm just looking for some pointers so I can jump in with both feet and not bang my head against any brick walls.  Looking forward to it.
    Thanks,
    Dan

    For what it will cost you in time and plug-ins to go the Cineform/Premiere route, you'll be better off getting Vegas Pro 10. It already recognizes the MVC files flawlessly and allows you to work with them on a single timeline in total, frame-accurate sync.
    I don't like the Vegas interface and am in the midst of remapping the keyboard but the ease of working with the footage more than makes up for the quirky keystrokes.
    Hopefully Adobe will get it together to handle this format SOON!!!

Maybe you are looking for

  • Pointbase : How can I create a stored procedure with Pointbase database?

    Hello, Excuse me for my english, I'm not anglophone. I try to create a stored procedure. This is my file SampleExternalMethods.java :   import java.sql.*;    //import com.pointbase.jdbc.jdbcInOutDoubleWrapper;          public class SampleExternalMeth

  • Why can't I download anything since updateing to windows 8.1

    Thanks for your time up front. I have been using FF for years and really enjoy it. 99% of all I do is in FF. Since moving to Win 8.1, whenever I need to download something I must open another tab or window. For documents or pictures that's fine, unne

  • IDVD making movie files low res

    I made a slide show in iMovie, exported it as an HD file with no issues. I brought the file into iDVD to burn and now the file is showing up very low resolution. I've used this method many times before and this is the first time I've ran into problem

  • Delete BDoc in SMW01

    Dear SAP gurus, Is it advisable to delete the error BDocs in SMW01? There is one case where when i deleted one of the error BDocs in SMW01, the changes that were made, were reverted. What should be the best way to do if i would like to clear off all

  • When using iPad or iPod to record how do i pause?

    when using ipod or ipad to record video how do i pause and continue recording? Thanks in advance for the help. Happy Thanksgiving!