Localize new workspace ES lenguage: error compiling swc file

Hi,
I'm trying to localize Workspace ES to another language (in detail Italian). But when I launch the command line to compile the SWC file this following error appears:
Loading configuration file C:\Adobe\Flex Builder 3\Flex SDK 2\frameworks\flex-config.xml
Error: could not find source for resource bundle data.
The compile command is:
compc -locale=it -output=export/it/workspace_rb.swc -source-path ./it "C:/Adobe/Flex Builder 3/Flex SDK 2/frameworks/locale/" -include-esource-bundles alc_wks_client_msg alc_wks_client_trace alc_wks_client_ui SharedResources collections controls core data effects formatters logging messaging rpc skins states styles utils validators --
Anyone has a similar problem and how do you fix it?

Hi,
It appears to me that are you using Flex Builder 3? If so,
it looks like your path to the Flex SDK 2 is incorrect...
Try this:
compc -locale=it -output=export/es/workspace_rb.swc -source-path
./it "C:/program files/adobe/flex builder 3/sdks/2.0.1/frameworks/locale/
es_ES" -include-resource-bundles alc_wks_client_msg alc_wks_client_trace
alc_wks_client_ui SharedResources collections controls core data effects
formatters logging messaging rpc skins states styles utils validators --
For more details, take a look also in the localization section at the guide at http://www.adobe.com/go/learn_lc_customizeWorkspace (page 21 for the command and page 36 for the localization steps).
Hope that helps!

Similar Messages

  • Error compiling Java file

    Hi, I have a Java file which is a basic diary function, but I cannot get it to compile as it seems to have a problem with the date class (cannot resolve symbol error). I am new to java and any tips/suggestions would be helpful.
    Here is the code:
    import java.io.*;
    import java.util.*;
    import java.lang.String;
    import java.util.Date;
    class organiser
         static BufferedReader in = new BufferedReader(new InputStreamReader (System.in));
         public static void main (String [] args) throws IOException
          Date now = new Date();
          String message = now.toString();
          message += "  ";
          message += "Hello, please select an option";
          System.out.println(message);
              Calendar rightNow = Calendar.getInstance();
              Date now = new date(rightNow.get(Calendar.DAY_OF_MONTH),rightNow.get(Calendar.MONTH)+1,rightNow.get(Calendar.YEAR));
              boolean kill=false;
              Vector nums = new Vector();
              nums.addElement("zz");
              Welcome(NOW);
              while(!kill)
                   MainMenu();
                   int n = Options();
                   switch (n)
                        case 1:{AddAnEvent();break;}
                        case 2:{SeeTodayEvents();break;}
                        case 3:{SeeTodayReminders();break;}
                        case 4:{SeeParticularDay();break;}
                        case 5:{SeeRange();break;}
                        case 6:{SeeAll();}
                        case 7:{Update();}
                        case 8:{kill=true;}
         static int Options() throws IOException
              boolean finished=false;
              while (!finished)
                   String s =in.readLine();
                   try
                        int x=Integer.parseInt(s);
                        if(x>0 && x<9)return x;
                        else System.out.println("You must choose an option");
                   catch(Exception e)
                   System.out.println("You must choose an option");
         return 8;
    static void MainMenu()
         System.out.print("Choose an option to continue:");
         System.out.println("---");
         System.out.println("Enter 1 to add an event");
         System.out.println("Enter 2 to see all todays events");
         System.out.println("Enter 3 to see all todays reminders");
         System.out.println("Enter 4 to see all events on a particular day");
         System.out.println("Enter 5 to see all events on a particular time interval");
         System.out.println("Enter 6 to see all events");
         System.out.println("Enter 7 to update the diary file");
         System.out.println("Enter 8 to exit the organiser program");
    static void Welcome(date NOW)
    static void AddAnEvent() throws IOException
         System.out.println("Enter date for new event in format 01/01/2001");
         date b = requestDate();
         System.out.println("How many days before the event wopuld you like to be reminded?");
         int k = requestReminderDate();
         System.out.println("Enter description of event");
         String s=in.readLine();
         event mo = new event(b,k,s);
         System.out.println("Entry successfully added");
    static date requestDate() throws IOException
         date ed=new date(01,01,2001);
         boolean never=true;
         while(never)
              try{
                   String s =in.readLine();
                   String day = "";
                   String month = "";
                   String year = "";
                   day = day+s.charAt(0);
                   day = day+s.charAt(1);
                   month = month+s.charAt(2);
                   month = month+s.charAt(3);
                   year = year+s.charAt(4);
                   year = year+s.charAt(5);
                   year = year+s.charAt(6);
                   year = year+s.charAt(7);
                   if(ed.validateDate(Integer.parseInt(day),Integer.parseInt(month),Integer.parseInt(year)))
                        ed = new date(Integer.parseInt(day),Integer.parseInt(month),Integer.parseInt(year));
                        return ed;
              else System.out.println("You have entered an invalid date");
         catch(Exception e)
              System.out.println("You have entered the date in an unrecognised format");
    return ed;
    static int requestReminderDate()throws IOException
         boolean never=true;
         while (never)
              String s =in.readLine();
              try
                   int x=integer.parseInt(s);
                   return x;
              catch(Exception e)
                   System.out.println("You have entered the date in an unrecognised FORMAT");
         return 0;
         System.exit(1);
    }

    hi,
    static int Options() throws IOException
    static void MainMenu()
    static void Welcome(date NOW)
    static void AddAnEvent() throws IOException
    static date requestDate() throws IOException
    static int requestReminderDate()throws IOException
    i think u made all these methods as staic because u got compiling error "the method ------- from the type organiser is not static" .
    u are meant to write the code something like this,
    Class Organiser{
    Public Organiser(){
    call();
    private void call(){
      Date now = new Date();
          String message = now.toString();
          message += "  ";
          message += "Hello, please select an option";
          System.out.println(message);
              Calendar rightNow = Calendar.getInstance();
              Date now = new date(rightNow.get(Calendar.DAY_OF_MONTH),rightNow.get(Calendar.MONTH)+1,rightNow.get(Calendar.YEAR));
              boolean kill=false;
              Vector nums = new Vector();
              nums.addElement("zz");
              Welcome(NOW);
              while(!kill)
                   MainMenu();
                   int n = Options();
                   switch (n)
                        case 1:{AddAnEvent();break;}
                        case 2:{SeeTodayEvents();break;}
                        case 3:{SeeTodayReminders();break;}
                        case 4:{SeeParticularDay();break;}
                        case 5:{SeeRange();break;}
                        case 6:{SeeAll();}
                        case 7:{Update();}
                        case 8:{kill=true;}
    public int Options() throws IOException{
        public  void MainMenu(){
        public  void Welcome(date NOW){
        public  void AddAnEvent() throws IOException{
         public date requestDate() throws IOException{
        public  int requestReminderDate()throws IOException{
    public static void main (String [] args) throws IOException
    Organiser organiser=new Organiser();
    }and follow coventions as said in previous replies
    with regards
    satya

  • Error Compiling Movie: Unknown Error - compiling .mxf files and .png files

    Hi there, really hoping someone can help here!
    I'm attempting to output a Premiere Pro CS6 v.6.0.0 timeline through the AME V6.0.382 64bit and am getting the "unknown error" at various points during the output. The timeline contains .mxf files directly imported from a Canon MX105 recorded at 1980x1080 - the sequence is in the same resolution - 25p 50mb. It also contains .png slides, .jpeg slides, titles, transitions, 3-way color correction, mutliband audio compression, a volume plugin. I've tried "watching" the output as it renders and removing potential "bad frames" within Premiere but I've done this 3 times and they keep rearing their head later down the project, and I can't afford to remove any more clips.
    I'm working on an OSx v10.8.2 Mountain Lion Mac with 2.6g i7 w/8gigs RAM.
    Any help greatly appreciated, I'm quite new to this so any further information required to troubleshoot, just ask.
    Thanks,
    Paul

    I'm having (what appears to be) the same problem.  I've spent a total of 8 hours talking to Adobe tech support about it, and they've said they would look into it.  Here is a project containing two consecutive frames of my animation; the first (4965) does not load (and appears with the "Media pending" image if you try to view it), but the second (4966) loads fine.  In every other application I've tried, both images load fine.  Adobe support said "there's something wrong with the header" but I've looked at them with several programs (e.g. below) and can't see anything different between the file that works and the one that fails.
    Jeffrey's Exif Viewer
    http://regex.info/exif.cgi
    TweakPNG
    http://entropymine.com/jason/tweakpng/
    Synalyze It!
    https://www.synalysis.net/tutorial-decode-a-png-file.html

  • Error compiling .hlp file

    When I compile my HLP file, I get the warning "HC4004: FPS709help.rtf is not an RTF (Rich Text Format) file." The contents of this file is excluded from the compiled help system. I am using RoboHelp 8 with Word 2003 on an XP machine. Can anyone help with this?

    When I compile my HLP file, I get the warning "HC4004: FPS709help.rtf is not an RTF (Rich Text Format) file." The contents of this file is excluded from the compiled help system. I am using RoboHelp 8 with Word 2003 on an XP machine. Can anyone help with this?

  • The new iTUNE GIVE ME ERROR R6034 AND ERROR 7 (WINDOWS EXE ERROR 1114)

    the new iTUNE give me error c:\program files(x86) itunes\itunes.exe r6034, and Error 7(windows error 1114)

    Hello ROMANCERO,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    iTunes for Windows: "Error 7" message when opening iTunes
    http://support.apple.com/kb/ts3074
    Best of luck,
    Mario

  • Trouble Building New Workspace For Day 1 Projects

    I am viewing the first day's lesson and am finding this course to be remarkably good for something that's free. I really like it! Thanks for providing it.
    One confusing thing I encountered> Being an overachiever, I tried to follow along with the instructor when she created a new workspace and unzipped Day 1's files with all of Day 1's projects in it. In the version she is using in the video, there is no Day1.zip file, and so trying to follow her, I thought I was making some mistake and not building my workspace correctly or not unzipping my file correctly.
    I finally figured out that it was different than what she was using and found instructions in the readme file that helped me set it up. Later, I found that the actual exercize at the end of the lesson was using the correct version of the zip file.
    I'm not really sure what you could do, but possibly some sort of pop message on the video warning people not to try this yet might prevent others from trying to do it while watching the video and getting frustrated.
    Again, GREAT COURSE! Thanks, mucho.
    Keith Lavender
    Helena, MT
    Message was edited by: KeithTheKing - I changed the title to better reflect the issue.

    Welcome to Arch Linux
    That looks like it is a 2.6 kernel module
    http://sourceforge.net/p/omnibook/bugs/58/
    Did you try either of these AUR offerings?
    ewaller$@$odin ~ 1001 %packer -Ss omnibook
    aur/omnibook-git 20110911-9 (7)
    Kernel module for HP OmniBook,Pavilion,Toshiba and Compal ACL00 laptops
    aur/omnibook-svn-zen 268-1 (1)
    Kernel module for HP OmniBook, Pavilion, Toshiba and Compal ACL00 laptops
    ewaller$@$odin ~ 1002 %
    Last edited by ewaller (2014-08-23 23:33:53)

  • Invalid SWC file using ADT to create an Android Native Extension

    I'm following a tutorial on youtube:
    https://www.youtube.com/watch?v=dfq9wiuLks4
    Using Flash Builder 4.6 and and when I get to the point where the project is supposed to be built using adt I run into the following error:
    "Invalid swc file:"
    Here is the command I'm using:
    adt -package -storetype PKCS12 -keystore newcert.p12 -storepass mypassword -tsa none -target ane notifications.ane build/ane/Notifications.swc -platform Android-ARM -C build/ane/Android-ARM
    Ive tried setting the Additional Compiler Arguments in the Flex Library Compiler to this: "-locale en_US -swf-version 19"
    Still the same result, If anyone can help me figure out how to trouble shoot this or isolate the problem I would greatly appreciate it.
    Thanks

    Any progress on it? I have the same problem...
    Thanks

  • Flash limitations, Invisible Compiler Errors, swc files...

    This question is for expert users of Flash CS4/CS5 and actionscript.   Please do not comment or offer suggestions if you have no experience  with these errors or their causes.
    ===================================================
    Question:
    =======
    Publishing  an extremely complex file can sometimes result in a blank swf being  created, and no compiler errors being shown even though some may exist.   Are there any suggested methods for dealing with this?
    =======
    Details:
    =======
    Those who have written flash files with large actionscript components  will be familiar with needing to set the JAVA_TOOL_OPTIONS evinronment  variable in order to prevent the Flash compiler from crashing due to  memory limits.  The majority of the files in question require this as a  bare minimum in order to be compiled at all.
    The project in question involves several main "launcher" components,  in addition to hundreds of "modules".  The modules themselves are being  developed in a distributed manner by several programmers.  Each module  can be executed as a standalone swf, for testing and production  purposes.  Each module has a companion swc file which holds its assets  and exports them.  All of the modules make use of a shared custom code  library that sits on top of actionscript.
    The launcher program also uses the shared library code, and runs the  modules  (never more than one at a time, and clearing previously loaded ones  before loading a new one) inside of itself.  The launcher contains a  reference file(the class names typed in an include file, referencing all  of the available exported assets from the swcs) that makes all the  necessary assets available to the modules, such that any module can be  run at any time.
    ===========
    The Error:
    ===========
    Seemingly random in occurence, every now and then a file will  "compile blank".  Essentially, the compile time is very short, the swf  pops up as a blank white box, and there is absolutely nothing listed in  the "Compiler Errors" tab, nor in the output tab.  Sometimes closing  flash and relaunching it will bring the Compiler Error messages back,  though usually not.  More often opening the file on another computer in a  different copy of flash and compiling it again will show the errors.   The original computer will still not show anything, but the other  computer can be used to fix the error, and then the file will start  reporting errors again properly.
    However, sometimes, the file will "compile blank" on all computers,  and all copies of flash.  Then the only resort to find the hidden errors  and fix them, is to comment out the entire file, and slowly uncomment  out sections one at a time.  In this manner, the area where the hidden  errors are occuring can be determined, and the error found manually.
    Obviously this is an extremely frustrating situation, but one that can be "worked around".
    However, there are two more serious incarnations of this which cannot be as easily side stepped.
    1.) Sometimes certain computers/copies of flash will "compile blank" a  file that doesnt actually have errors in it.  The same file will  compile and work perfectly on one machine, and not on another.
    2.) The most severe of all...The two more complex components compile fine in cs4, but always "compile blank"  on cs5, no matter what.  The module files all compile much faster on  cs5 and work great.  However, the shared code library and the launcher  program cannot be compiled in cs5, though they compile fine in cs4.   Both compile blank every single time on cs5, with no errors reported.
    --Just as a side note here are the compile times on two different  types of computers, for cs4 and cs5, for the three types of compiled  files:
    =====================
    CS4 Compile time averages:
    =====================
    Dual Core - Pentium 4:
            Module File = 1-4 minutes
            Shared Code Library = 10+ minutes
            Launcher Program = Unusable
    6 Core AMD w 16 GBs of RAM:
             Module File = less than 10 seconds
             Shared Code Library = approx. 1 minute
             Launcher Program = 15-25 minutes
    =====================
    CS5 Compile time averages:
    =====================
    Dual Core - Pentium 4:
            Module File = less than 20 seconds
            Shared Code Library = 2-4 minutes
            Launcher Program = Compiles blank
    6 Core AMD w 16 GBs of RAM:
             Module File = less than 10 seconds
             Shared Code Library = less than 30 seconds
             Launcher Program = Compiles blank
    ========================================
    Summary:
    ========================================
    1.) Large and complex files in cs4 or cs5 can sometimes false compile, showing a blank swf, and no errors.
    2.) Large interlinked projects containing many swcs that can compile on cs4 always compile blank on cs5
    The issues involved "appear" to deal with interlinked swcs and swfs, memory, and compiler messages.
    The best solution i can think of would be some sort of verbose mode  setting, where the cs4/cs5 compilers can be set to trace all the actions  they are taking, either to a log file, or to the screen.  Rather than  simply giving a summary of the results, a real-time display of what is  occuring might lead to the actual bugs/issues.
    Eisley79

    For the future people who come searching this forum and find my thread.
    http://kb2.adobe.com/cps/405/kb405257.html
    Above is a link to adobe's official version of admitting this situation exists(and its true for cs5 as well).
    If you are reading this, and simply have a single large file that won't compile.  Attempt their solutions suggested.  Also, click the link in the comments by the user refering to a blog that helped him.
    That will explain the JAVA_TOOL_OPTIONS memory issue (which you can find many explanations on google as well).
    If however, you are working with a large number of separate swf's that load each other, and share assets and are getting the REAL problem, neither adobe's solutions, nor the JAVA_TOOL_OPTIONS will correct the problem for you.  My best suggestion to you is, have one SWF launch the next one, and break your project into pieces.  Whatever the parent SWF needed to have, can be either copied into all the children SWFs, or into several "brother" SWFs which share the loaded children SWFs, (and can actually be successfully compiled).  Then as you move from brother to brother, they can be made to appear as if they were actually ONE file, loading the children, instead of several launching each other, and sharing the loading duties.
    and as far as adobe is concerned, if i told you what i thought of you, i would get this post deleted...and myself banned.
    Anyone considering doing Enterprise level projects in Flash, DONT.  I wanted to use JAVA, but my company went with flash.  I am stuck working around it constantly, and would have been better off coding foundation classes to mimic whatever functionality we needed from flash into java.
    Maybe when actionscript 4 comes along, it will magically bring with it true object oriented programming, and Adobe will spend the time and money to make a real working compiler.  Somehow i doubt it.

  • Adobe Air + Box2D.swc = TypeError: Error #1009 // New way to handle .swc files in Flash for iOS Apps?

    Hi,
    I need your help please - I have to update one of my iOS Apps. In this App I use Box2d for a simple maze game (it's an app for kids). When I publish & test this game on my Mac it works fine. I can drag my Hero (fish) through this Maze and all collision detections, gravity etc. work perfect.
    When I test it on my iPad it doesn't work. The device debugger shows this error message:
    TypeError: Error #1009: Cannot access a property or method of a null object reference.
      at global$init()
      at global$init()
      at Box2DAS.Common::b2Base$/initialize()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_ Retina/src/com/Box2DAS/Common/b2Base.as:31]
      at wck::WCK/create()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_Retina/src/com/wck/ WCK.as:26]
      at misc::Entity/ensureCreated()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_Retina/s rc/com/misc/Entity.as:50]
      at misc::Entity/handleAddedToStage()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_Ret ina/src/com/misc/Entity.as:100]
      at misc::Entity/handleAddedToStage()
    Line 31: loader = new CLibInit();
    I guess "CLibInit" should come from the .swc file.
    The thing is:
    I didn't change anything in this maze game - it seems this has to do something with the new Flash and/or Adobe Air version. Box2D.swc file is included:
    It always worked like this - and it works when testing it on my Mac - but it is no longer working on my current system.
    So I started my Mac from an older system (10.9.5 on an external HD) and published the App from Flash CS6 and Adobe Air 13.0 - then it suddenly worked on my iPad as before. I was able to tap an the fish and drag it arround.
    The same project / app published from my current OS X 10.10 + Flash CC 2014 + Adobe Air 15.0.0.302 is not working. I always receive this Error Message - I can not drag the fish - nothing happens. And I have no idea why this happens and what else I could do. I searched the whole day for a solution but didn't find anything.
    So did anything change by the way Flash and/or Air handles .swc files? Is there an other way to include: import cmodule.Box2D.* / CLibInit ?
    Please - if anyone has a clue - please let me know!!
    Best regards
    Jan

    Update:
    There is also an Android Version of this App. I just published and tested a new version of it on my kindle fire & Samsung Galaxy Tab 2. On both Tablets the maze works perfect. I'm able to drag the fish around etc.
    Then I published this Android Version for iOS and tested it on my iPad. Again I'm getting the Error message:
    TypeError: Error #1009: Cannot access a property or method of a null object reference. 
      at global$init() 
      at global$init() 
      at Box2DAS.Common::b2Base$/initialize()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_ Retina/src/com/Box2DAS/Common/b2Base.as:31] 
      at wck::WCK/create()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_Retina/src/com/wck/ WCK.as:26] 
      at misc::Entity/ensureCreated()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_Retina/s rc/com/misc/Entity.as:50] 
      at misc::Entity/handleAddedToStage()[/Users/jan/Documents/_Projekte/Spielplatz/Universal_Ret ina/src/com/misc/Entity.as:100] 
      at misc::Entity/handleAddedToStage
    ...and the fish is stuck - I can't drag it - nothing happens. So this error only occurs when I publish the App for iOS - as an .ipa. Did anything change in the way Air handles .swc files?
    I'm totally confused
    If anybody has an idea what I could try - PLEASE LET ME KNOW!!

  • [svn] 1625: Avoiding an NPE instead of blindly instantiating a new localization manager here when encoding the compilation result of a CSS file to a SWF to unblock QE .

    Revision: 1625
    Author: [email protected]
    Date: 2008-05-08 13:53:33 -0700 (Thu, 08 May 2008)
    Log Message:
    Avoiding an NPE instead of blindly instantiating a new localization manager here when encoding the compilation result of a CSS file to a SWF to unblock QE.
    Doc: No
    QE: Yes
    Bugs: SDK-15490 - Compiler gives nullpointer in encode of incremental compile if benchmark is set to true
    Reviewer: Paul
    Ticket Links:
    http://bugs.adobe.com/jira/browse/SDK-15490
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerAPI.java

    Hi, thank you for your replies, I found out few things about my servlet, and its portability
    and i have few questions, although i marked this topic as answered i guess its ok to post
    I am using javax.servlet.context.tempdir to store my files in that servletcontext temporary directory. But i dont know how to give hyperlink
    of the modified files to the user for them to download the modified files.
    What i am using to get the tempdir i will paste
    File baseurl = (File)this.getServletContext().getAttribute("javax.servlet.context.tempdir");
    System.out.println(baseurl);
    baseurl = new File(baseurl.getAbsolutePath()+File.separator+"temp"+File.separator+"files");
    baseurl.mkdirs();so i am storing my files in that temp/files folder and the servlet processes them and modifies them, then how to present them as
    links to the user for download ?
    and as the servlet is multithreaded by nature, if my servlet gets 2 different requests with same file names, i guess one of them will be overwritten
    And i want to create unique directory for each request made to the servlet , so file names dont clash.
    one another thing is that i want my servlet to be executed by my <form action> only, I dont want the user to simply type url and trigger the servlet
    Reply A.S.A.P. please..
    Thanks and regards,
    Mihir Pandya

  • ERROR creating new workspace: directory file is invalid

    I f I try to create a workspace in a subfolder (directory)
    where the path is too large then I get an error:
    The directory file "C:\Documents and Settings\aus046\My Documents\programs\java\oracle_jdev_workspaces\my_new_ws"
    the path may conatain illegal charecters, may be too long or may not be accessable.
    I make the path shorter like "C:\Documents and Settings\aus046\My Documents\programs\java\ws_footytips"
    then it is fine but this messes up my desired folder structure.
    Any chance of fixing this bug?

    Yes, we've narrowed it down to a problem when using >80 character directory names.
    It's bug 2776374 (viewable on Oracle Support's metalink site) and will be fixed in the next major release.
    Thanks!
    Rob

  • Error compiling movie: out of memory !!! Premiere CS3

    Hey every1 --- desperate need of some guidance here. I've been all over the internet and these boards --- have seen this come up with a lot of people but no real solid answers that I'd seen or that have helped.
    First off, my comp is an imac 3.06 Ghz Core 2 Duo, 4GB memory. (just bought the computer last year)
    I'm shooting with a canon 7d in HD (1920 x 1080p) and I'm editing using Premiere CS3. I've noticed that editing has become very difficult since I started using HD; playback is very choppy and the 'quality settings' in the preview monitor are a joke and do absolutely nothing whether it's on draft or automatic.
    Anyway, despite the choppiness and slow editing, I was able to get a 3 min clip completed. These are my export settings:
    Export > Movie
    H.264
    960 x 540
    23.976 fps
    Square pixels,
    100% quality,
    recompress: unchecked.
    Once exported (I was able to export smaller timelines previously--- say, 50 secs of footage or so) the files look AMAZING and from there I use them for online video via vimeo -- stuff looks really awesome.
    Anyway, recently I'm getting: 'Error compiling movie. Out of Memory. Change optimization preferences to memory', etc. etc. Well, I did as it asked and that did absolutely nothing.
    So, I decided to open up my activity monitor and watch what's going on with my memory while premiere is exporting. I also closed ALL unused applications. System runs at about 2.16gb free memory before I start exporting. Memory seems stable during export UNTIL around the 50% exporting mark, and then its starts climbing like crazy and my memory just gets eaten up --- finally resulting in a crash at about 70% render.
    I really don't know what else to do. Does my computer not have the power to export 3 min of HD footage??? This seems surprising to me ... I don't know what else to try.
    Thanks for any help !!!
    -Mark

    Hi Mark,
    Hope you are having a wonderful day.
    Sorry to hear that you are having such a hard time. Although I did not specifically get the out of memory error, I can only be convinced that that is the problem.
    Although I am not a computer whiz, I have learned my share of things. I have been troubleshooting a video all this week (really, a couple of months), but I had to put it aside and come back to it.
    I tend to be talkative; so I will get back on topic or at least try to stay on topic, so bare with me. Smile....
    Here is what I have learned and maybe it will help you with yours if you have not found a solution already.
    Based on your hard drive specs and ram, I was thinking the same thing e.g. hard to believe that you are not able to render 3 minutes of video in HD. I primarily work in HD/1080p.
    The place where we are similar is that I eventually could get the video to render by reducing the workspace that is rendered piece by piece until I was able to render the entire file. When I tried to encode the video, I kept getting error compiling messages. I tried different codecs, deleting xmpses, not rendering xmpses, etc. I could not figure out the keyframe trick so I just put in a black video from after effects. By the way, all of my videos intro the same and no problems with the other videos fading from black to a still photo.
    Here is the problem from what I could gather.
    Simply, out of memory. I was rendering and trying to encode a 45 minute video with after effects compositions and the dynamic linking kept timing out once the file reached a certain size. There were no other true fancy effects. I do alot on the green screen and just use after effects to make a white background. Smaller videos, rendering has been slow, but doable. This massive video would never compile. I won't bore you with my system specs, but know that similar to your situation, the system in theory should have been adequate.
    Work around...
    I ended up exporting the video as 3 separate 15 minute video clips. I could not get them to encode as .wmv files so I encoded them as .mp4 files. By the way, I still encoded in HD.
    Here is the kool stuff.
    After what seems like forever, I found a converter that could convert .mp4 to .wmv and rejoin the files to play as one large file with the same quality as my source file and no audio synching issues. By the way, I do not work for this company. I just found this encoder at 4 o'clock this morning after trying all of these other converters that were straight garbage or were free to try and not really free if you wanted quality. By the way, the conversion tool is not only user friendly, but free which is awesome.
    The name of the software is Media Cope. Just visit www.mediacope.com.... Be sure to send the owner an e-mail to thank him and let him know that Mark sent you. I just sent him an e-mail earlier to let him know that I was going to post on Adobe what a wonderful software he created. I just needed something free, quick, easy, and user-friendly.
    Whoops... got off topic....
    I'll do a summary at the end for my recommendation to you.
    Here are some other tidbits that I learned as well that may save you some time.
    When editing this is what I do now...
    1) I use CCleaner from www.piriform.com to quickly clean my system especially temporary files before I start editing and if I am switching from project to project.
    2) In all of my troubleshooting this week, I found a kool little software call Smart Close. (Just google to find this one.) It closes all of your non-critical background files in order to maximize system resources. (When I am done editing, I just reboot and all of my background programs start up again. You do not have to do it that way, that's just how I do it. The nice thing is that it is a wizard interface; so you do not have to try to figure out if a process in the background is critical or non-critical.)
    3) Depending on my mood and if I did not forget, smile.... I change the priority to high for the adobe products in the task manager.
    More things that I learned...
    1) We are not able to change the temp file for how Adobe encodes. My logic was if I could change the encoding to a hard drive that was simply empty so Adobe can render there, then I would be good. Wrong.... Adobe does not allow you to change the temp location. (Note: This is what I discovered in the different forums; so encoding to an external hard drive is not the best move. Read more to se why.)
    2) It is best to have your scratch disks as your internal disk. If you have multiple internal disks, then you shoud check some other forums for the best way to set up your scratch disks. When I was just starting out, I bought an external hard drive enclosure with the thought that I would work primarily off of those external drives with the option of doing some RAID work. Bad idea... Even the simplest of tasks took forever. It was best to work off of the internal drive. By the way, I still use the enclosure hard drives for backups in order to allow me to free up some space on the primary hard drive. When rendering, it is truely a use of the RAM and the hard drive space in the editing process.
    I'll leave you with this...
    I take back what I said earlier, you do need a new computer with more RAM. If you can get 16 GB, great. The primary reason is that if you are editing in Premiere and if you do anything with dynamic linking into your after effects, it will cause your ram to climb as the file gets larger. Of course, be sure to get the largest hard drive possible as an internal drive, the maximum on processor speed, 64 bit operating system, etc.
    I know you are like by now, Mark, what is the point of all of your gibberish... Really, it was to share with you and others on some really kool work arounds.
    My recommendation for you are as follows.
    1) You have already proven that you can render and encode 50 second clips and you are very happy with those clips, so create separate smaller clips for this particular project.
    2) Once you have the final clips outputted, then use Media Cope to rejoin the files as one large file and you are done.
    (Note: The one thing that I did notice is that there is a small break right between where the files are merged. The nice thing is that as a video editor/film maker, you will be the only person likely to notice it because you know where the breaks are. The other nice thing is that the untrained eye will not notice it and if you had to submit your work to a television station especially on DVD, the video system should recognize the file as one large file and play all the way through. Note: For the last sentence, I said 'should play all the way through' as I have not had a chance to check this one yet as I just finished this project today and still have to turn in all of my videos. I still have some more videos to merge.)
    By the way, the only specs that I will share are that I work on a PC and it has 8 GB of ram.
    The summary of the summary is that sometimes an error compiling message could simply be that your system does not have resources to render and the encode that large of a file. At least that is what I learned this week or at least my specific situation. The confirmation is that I just finished shooting a documentary which was one hour and some change and was able to render and encode to .wmv with no problems. Of course, I was not using after effects for this particular project.
    In either case, hope all the information helps you with your project.
    Have a wonderful day and happy holidays everyone.
    Mark

  • Localization of Workspace in LC 8.2

    Hi all,
    I have been trying to localize the workspace to danish (da_DK), and I have followed the guide in the documentation:
    http://help.adobe.com/en_US/livecycle/8.2/customizeworkspaceui.pdf
    However when I copy my newly created ear file to Jboss I keep getting the english locale.
    I have tried to run a debug, but here I get an error which states:
    An internal error occurred during: "Launching debugWS".
    protocol = http host = null
    and under the pane Problems i have the following error:
    Unable to locate specified base class 'lc.core.AuthenticatingApplication' for component class 'Main'.
    Can anyone help me here?
    Thanks in advance
    Sincerely
    Kim

    Hi Kim,
    You will need to set up Flex SDK, ant, import the New Workspace ES project, and then modify your build.xml file. You will need the LiveCycle_ES_SDK folder from LiveCycle server (also accessible from Workbench ES after you connect to the LiveCycle server. When you import the new Workspace project (Flex project), it should be pointing to the Flex SDK in the default location. You may need to modify the build.xml file for your environment. When you access your Workspace, are you using the new URL? I'm presuming that your browser settings for locale are set to Danish as well?
    If you want, you can send a ZIP of the project to [email protected]

  • Import source from 1 workspace to a new workspace

    There appears to be something missing when I import source files from 1 project into a new project contained in a new workspace.
    The source files compile indiv. with no errors in both workspaces. The old workspace compilies fine.
    However when you try and run or compile the new project or new workspace I get tons of wierd errors about duplicate classes.
    Jdev 903
    What's up. Anyone know?

    go to this link in apple and it will tell you how
    http://support.apple.com/kb/HT1329?viewlocale=en_US
    you can also get a memory stick and move the files but it will not save your ratings or playlists. I do not suggest a stick that uses compression. I did it that way and Vista does not have a way to decompress the files so they are useless. The third way is to back up of your files if you have a cd burner. you can do this through itunes by going to file/library/back up to disk. After recording the back up. you can restore from disk on the new computer.
    But I will warn you, Vista *****! I have the 64 bit version and everytime I close Itunes it erases my music. I still have the music on my computer, it just wont stay in itunes. Still dont know how to fix this.

  • Problems using alchemy windows compiling .swc

    Hi there,
    yesterday I installed cygwin and configured alchemy in a correct way. => It worked
    I have some problems setting the path variable but I solved them with adding the directories to the windows path variable => cygwin reads and uses them.
    Today I started my pc and nothing works. There is now error. I tried everything. I run the config script again and it run successfully. But if I try to compile a swc nothing happens. The PC works for a while and then I can again type a new command line. Now error, now success report AND no swc file.
    Can anybody help me, please?

    I've encountered a similar problem in the past.  I found that if I entered the "alc-on" command and then displayed the path "echo $PATH" I had 2 entries for the $ALCHEMY_HOME/ahacks directory in the path. Removing one of those entries fixed the problem.
    To ensure I used the correct gcc/g++ after entering "alc-on" I choose to omit the $ALCHEMY_HOME/ahacks path addition described in the instructions.  I suspect my solution may not be the best.  I haven't investigated too deeply why this worked but it did fix the exact problem you are describing.

Maybe you are looking for

  • How to change default FCoE QoS class - Nexus 5020

    I see that on a Nexus 5020, the default FCoE QoS class is 50%. I am not using FCoE so I would like to adjust this value to 0%. I switch complains and says I can't change default values. How should I go about getting around this to eliminate the FCoE

  • Ipod 5 wont charge with new cable

    The old cable of my iPod 5 broke, so when I got a new one(couple of weeks after it broke) it wont charge anymore. The first time I plugged it in with the new cable my iPod started up and charging, but when I swiped right on the home screen it turned

  • Update query for jstl

    Hi I have one jsp page which shows values for id, name, Phone in text boxes. Here id is unique and not editable. Based on id a user can edit name and Phone # and when he submits it should be updated in the db where id = xxx. <c:set var="i"   value="$

  • Setting JMSMessageID using dynamic configuration

    hi all, I have a scenario where i need to set JMSMessageId with some value from the payload. I tried setting JMSMessageId  using the setproperty but the message id was not set in the jms message. If any one has tried the same let me know wat is the s

  • HTTP--XI--HTTP

    hi all, my scenario is like this... 1)send data to xi from jsp page 2)do mapping in xi 3)receive the value from xi in the same jsp page the data that i sent to xi has successfully reached xi and the mapping has been done properly....i do not know how