Project List Clearing?

Hello I have been running my own .jad files using the WTK 2.5.1 CLDC. What I wanted to know is how can I clear the projects list? My final project I want to have a file name of... "FirstProject.jad" now I already used that and it will not create a project from that jad file. I just need to clear the open projects list. It if matters I am running it under Linux Slackware.
Thank you,
Kyle

Delete the folder containing the project files to remove the project.
db

Similar Messages

  • How can I get more than 5 items in my Recent Projects list?

    After a rather horrendous incident with trying to do a series of videos all in one project using bins and shared media and a savefile that got *WAYYY* out of hand (20 minutes to load the file)- which I believe was tied to importing media from another .proj file, I have switched to a more modular approach with anywhere from 2-5 projects in each project and now a collection of around 15-25 projects on the go. Most of these are "work on a chapter, then change to another project while waiting for footage for another project" and several of them share pieces including multicam segments and sync'd audio.
    Rather than importing from another project, I am using Control-C, switch to a different project file, then paste in. This isn't the most "Adobe Professional" style way of doing things, but considering that I lost several hours to trying to recover from the last project, even when I only needed to spend 20 minutes pumping out a rough cut, I'm not going back to that method until my next computer upgrade and until I begrudgingly switch to CC in around 1-1.5 year's time.
    So the issue that I'm faced with is that I'm often using the Open Recent Project flyout and having 5 projects on that list is just not enough to be remotely useful.
    In MS Office, the list is quite long and even in photoshop, I can get 10. That's enough for my Photoshop, but I switch projects using the Recent Projects list in Premiere a LOT more often. I could just use my explorer windows to jump around, but given that I have 5-6 explorer windows open per project most of which are folders crammed with footage, PSD stills and peak files, plus other non-video things I'm working on right now, that's really not the simplest way to navigate at a glance.
    How can I get 10, 20 or 25 items in that flyout list instead of mucking about with 5?
    I run Adobe Production Premium CS6.

    I see a lot of people not reading the circumstances of what I said.
    I did mention that currently I use the "explorer" method and it's kind of clumsy. Although I liked the idea of using shortcuts. I had thought about moving the files, but didn't think about shortcuts... considering everything on my desktop is a shortcut, I'm really not sure why I didn't think of that.
    But I did mention that I almost always have anywhere from 12-15 windows open at any given time in my explorer. I am involved with management of 4 different companies right now, two of which are in startup mode. Videos are important for me, but not my only duty. These windows only go down when I shut down my computer, which happens on average once every 4 months. It is not a problem on a reasonably capable system.
    Still, for a project of currently 23 files (just got increased to 28 and expected to rise to 32-35), and because I have had project files go sour on me, I keep some hierarchy and because I don't have 100% creative control over all my projects, I also occasionally have to do re-overs ie when a specific style of writ is nixed by a boss or customer. Those 23 project files also have version iterations.
    So navigating 'at a glance' through a file explorer isn't always the most practical.
    In the end, I'll probably try to find some time to re-organize my file structure using shortcuts.
    Still, given the number of 'recent files' can be modified or is larger than 5 in: Windows Start Menu, Recent documents, Adobe PDF recent documents, Adobe Photoshop, All Office suite programs...
    It's just weird that there's only 5 for a program intended for the kind of people that work on projects somewhat larger in scope than "hey, we took the dog to the park the other day".
    @Jerry Klaimon - not sure what version of Premiere you're using, I'm using CS6 with Production Premium CS6. Recent files only shows 5. Photoshop shows 9. For my current workload, I'd probably want 10-12 and it would be nice if they could go to 20 or more IMHO. Look at History states. History states default to 20. I usually set this to 35 whenever I set up any user's computer. It's easy to choose what suits me from the preferences menu. I don't see why they wouldn't have the same idea for 'recent files'
    @anyone who thinks I'm stupid - please feel free to insult me. A forum scuffle is often a great way to get the attention of moderators who might be in a position to pass this idea on to someone who could do something about it. I'm also anal, stubborn, holier-than-thou and not-as-smart-as-i-think-i-am if you want some ideas to get started .
    @Steven Gotz - you are quite correct that asking is important. Probably a smarter thing to do before pestering the devs with feature requests is to thoroughly check to see if it is in fact already existing. Adobe products are famous for having features that nobody knows about. Most of the questions I have that Google or Lynda.com didn't answer have been answered here in the forums. Then once I've seen that a few hundred pairs of eyes sharper than mine have also come up with nothing, then perhaps it might be worthwhile sending in a feature request. In this case, I will probably toss a feature request in later, but I'll probably just use your idea of keeping a master project folder with shortcuts.
    @MarkMapes - I do not have a problem loading files. Project files load just fine for me. But I have one project file that has a problem that loads a HUGE amount of RAM and takes nearly 20 minutes to open. It even takes almost 8 minutes to close it. It was acting as my master file with everything nested in sequences and I needed to spend a whole afternoon to pull those sequences out using copy-paste because bringing them in via Import Sequence brought the problem into the new file. I would file that under "glitched save files" rather than "slow loading".
    @Jon-M-Spear - good idea too - although I did cringe a bit at the suggestion of putting things on the desktop. I have bad habits and I work very hard to try to make other people who have worse habits in this company to try to get them to not keep anything on the desktop. In fact, it's probably my favorite thing about Windows 7 that you can have a clear or nearly totally clear desktop.
    Thanks for your comments folks.

  • List.clear() outside of List finalList = new ArrayList(); will delete element in finalList?

    Hello all!
    I am using 3 ArrayLists.
    the first is List<String>
    the second is List<String[]>
    and the third is a list of those lists List<List>
    I use the first list to get the string I need, but I use the second for String.split.
    I then need to keep a list of these to use, so I need the third List.
    After adding the second list to the list of lists I want to clear it so I can set up the next list to be added, but if I do list.clear(); it will delete everything in that list.
    If I do not clear it, it is fine.
    At first I wasn't sure if it was my fault, because I'm not sure if I ever had to do that before, so I made a test case that yields the result if I change the element outside.
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    package javaapplication1;
    import java.sql.SQLException;
    import java.util.ArrayList;
    import java.util.List;
    * @author Konrad
    public class JavaApplication1 {
         * @param args the command line arguments
        String a;
        List<String> j = new ArrayList<>();
        public JavaApplication1()
            a();
        public void a()
            a = "ADASDSADSA";
            j.add(a);
            a = null;
            System.out.println(j);
        public static void main(String[] args) throws SQLException {
            JavaApplication1 a = new JavaApplication1();
    If I change a = null to a = ""; it still yields the original a = "ADASD......";
        protected List<String> list = new ArrayList<>();
        protected List<String[]> list2 = new ArrayList<>();
        protected List<List> finalList = new ArrayList<>();
      finalList.add(list2);
                     //list2.clear();
    With this I yield an empty array element, even though my array elements exist.  I tried using multiple lists and I just had multiple empty elements.
    So again I'm not sure if I did something wrong, or is this a bug?  Since my test case worked, I'm confused.
    Thanks!
    ~KZ

    After adding the second list to the list of lists I want to clear it so I can set up the next list to be added, but if I do list.clear(); it will delete everything in that list.
    Correct - you are just working with multiple references to the SAME set of objects.
    Use 'remove' to remove an element from a list and then 'add' to add it to the other list.
    See the Javadocs for the 'remove' method of the List interface
    http://docs.oracle.com/javase/6/docs/api/java/util/List.html#remove(int)
    remove
    E remove(int index)
    Removes the element at the specified position in this list (optional operation). Shifts any subsequent elements to the left (subtracts one from their indices). Returns the element that was removed from the list.   
    Parameters: 
    index - the index of the element to be removed 
    Returns: 
    the element previously at the specified position 
    Throws: 
    UnsupportedOperationException - if the remove operation is not supported by this list 
    IndexOutOfBoundsException - if the index is out of range (index < 0 || index >= size())

  • .obj option status - show in project list?

    In previous versions of CVI, the project list shows whether an object is compiled to .obj, or not. I can't find how to show this in the newest CVI.

    Thanks for the reply.
    I read all that stuff and it flys over my head. I just don't get why somewhere there can't be a list that keeps track and you give me a little red dot in the list. I have a project with about 60+ files, so this is very annoying on something that used to not only not be not annoying, but was usable and useful.
    I guess this is related to the fact that if I have one program in debug, the rest in .obj (of course, I'm not quite sure, since there's no indication) - I change one line of code, tell it to build, and the entire project builds. In the previous version, only that file recompiles. That was nice. If this is the way it has to be, it's a bit of an annoyance when you're building 50 times a day.

  • Mobile Me Galleries in Aperture Project List

    If I create a mobile me gallery in aperture it appears on the project list, near the top under mobile me galleries. That's fine, until I close aperture and then the next time I open it I don't have any mobile me galleries listed. It hasn't always been like this, I first noticed it about a month ago but it might have happened before then. The galleries are still on my .me space, I know that I haven't deleted them. However if I go into Aperture, preferences and go on the mobile me tab I can see all the galleries listed, I then have to click the 'check now', the galleries then reappear in my project list, although sometimes I have error messages during the process. So whilst I can get around the problem, it's not ideal and I'd really like to have all my published galleries in my project list so I can edit them. I'm using Aperture 2.1.2 and OS 10.4.11.
    Has anyone else had a similar problem - any suggestions and help would be much appreciated.
    Many thanks
    Berni

    A gallery can be integrated into your website by linking to it.
    If you want to have the gallery in the main navigation you will have to hide the standard one and build your own. The gallery link in this menu will be an external link and should be set to open in a new window so that viewers don't have to use their back button.
    See....
    http://iwebfaq.org/site/iWebNavigationmenu.html
    ... for building our own.
    You can also link to a Mobile Me gallery by clicking on the widget icon, selecting MobileMe Gallery and selecting the particular one from the list.

  • IMovie crashed now .rcproject file doesn't show in library/project list and won't open.

    URGENT PROJECT DUE TODAY.
    iMovie crashed while I was working on a project, now I can't c the file in iMovie, however I can see it in Finder and moved to the movie folder, but it still doesn't show in my iMovie library or project list and nothing will open it.  It is listed as a .rcproject and I cannot find how to open it.  PLZ PLZ HELP

    Were you working with iMovie 9 or 10 when you had the crash?
    It sounds like you were in iMovie 10 trying to update your iMovie 9 projects into iMovie 10.
    If you were working in iMovie 10, see if you can still see everything with iMovie 9.0.9 (the 2 versions have completely different media file structures).
    If you were in iMovie 9 it sounds as if the .rcproject package may have got corrupted.  You can look inside the package in Finder with the "show package contants" contextual menu but I would not know how to repair it manually. 
    Do you have a backup or are you running time machine?  With a backup you should be able to replace the offending package with a working version.

  • MobileMe Album in Project List

    I used to have my MobileMe album show up in my Project List when I opened Aperture, but not anymore. I can't find what I did wrong to have it dissapear. Need help configuring it back.

    This has just happened to me as well. MobileMe doesn't appear as a group header at all. It appears to have done it to me after I briefly switched my MobileMe synch settings in Aperture to manual due to network issues badly impacting Aperture performance. As a result, it has lost all of my MobileMe albums, even though I have switched the synch period back onto automatic.
    Graham.

  • R12 Project List view - At Completion columns

    Hi,
    The project list in Projects R12 can be personalized to allow displaying ofmany different columns, most ITD and PTD.
    I wish to show 'At Completion' values for various reasons, the main one being so I can at the 'At completion' cost budget (current total budget).
    But also the revenue budgets, forecasts and the variance 'At Completion'.
    Is it possible to show 'At Completion' values in the project list? It seems odd that these columns are not available by default....
    Thank you in advance for any answers!
    Matt

    Hi Govind,
    Thank you for your reply...
    The 'At Completion' column is not available in Personalization list of Values for available columns - only ITD and PTD.
    Is there a way to add columns that are not available in personalization list?
    Matt

  • How to disable seeded views and personalize button on project list page?

    Hey all,
    we are setting a limited user access responsibility for employees...
    they will come into the team member page..
    problem is if they select project list page from the drop down...
    there are seeded views like profitability... we dont want anyone to see them unless they are a sr staff...
    also the personalize button can allow them to pick the fields into a custom view if they desire...we need that turned off or supress certain fields from the list of fields when creating a new view... or worst case turn off the personalize button
    thoughts?? solution???

    The personalization page (Shuttle bean where user selects the columns to be displayed on the table) is being rendered automatically by Framework layer and not from Product code side.Hence it will not be possible to hide fields.
    Another way of achieving the objective which you detailed is : You can create the views which is secured by a function. So that users with that function security will be only able to see those views.
    Hope this helps

  • There was an error retrieving the user management project list

    Hi All
    I created the application profile successfully and try to create the new application but the error message was displayed like " *There was an error retrieving the user management project list . please verify that a project exists"* i didn't give the domain name, i went admin login......
    Regards By
    Nagaraj

    Hi Varun,
    i started services correct order only, but i am using VMware
    Regards
    Nagarajan

  • Error message:  Error retreiving the user management project list

    The full message is: There was an error retreiving the user management project list. Please verify a project exists.
    This is from a new install, and I'm new to the product.
    If anyone can point me in the right direction it would be much appreciated.
    Thank you
    Rod

    It is normal, I encountered this error during planning aplication deployment from BPMA. There is a "cosmetic" bug that exception not catched and drops to log.

  • IMovie project is "lost" on iMovie project listing.

    iMovie project is "lost" on iMovie project listing.  Can find in in "my files" but can't see it in iMovie or open it using iMovie.  Help!

    See this thread, then follow the trail of links I've provided to numerous topics where others are reporting this problem:
    https://discussions.apple.com/thread/4846004?tstart=0
    Unfortunately, we don't have a solution as yet, other than following baldric007's advice above regarding using a Time Machine backup (if you have one, or another type of backup).
    To summarise for other members here - Projects disappear from iMovie's Project Library, but are still listed in Finder in the Movies/iMovie Projects folder. Double-clicking on the project in Finder opens iMovie, but the project itself doesn't open. Personally, I've also tried to open the project in Final Cut Pro X to no avail (iMovie projects can normally be imported to FCP X). In my case, FCP X quit when I tried to import the project.
    As a safeguard (even if you are running a backup), it is advisable to create a duplicate of your current project before closing iMovie and shutting down. There is no guarantee that the duplicate won't also disappear from the Project Library though. To create a duplicate, while in Project Library view (not Edit view), click on the project in the list, then in iMovie's menu select File > Duplicate Project. A copy will be placed in the Project Library with the same name as the original, but with a number appended. You can change the name if desired.
    To ensure that Apple is advised of this problem by as many as possible, from iMovie's menu select "iMovie > Provide iMovie Feedback" and complete the online form.
    John
    Message was edited by: John Cogdell

  • Recent projects list

    Hi - I have a minor issue to do with the recent projects list in logic.... i find this a very handy shortcut as I'm sure we all do. However, I record all my projects to an external HD - on occasions I open Logic without the HD connected if I'm just trying something out away from my studio set up. When I come back, my recent projects list has disappeared....
    Not a major issue, but a trifle annoying losing the shortcuts to the 10 or so songs and versions of songs I happen to be working on and have to find 'em in the file browser.
    Any solution?

    I know what you are saying! It would be nice! But once you work on something without the HD, in Logic's mind those are your recent projects, like if there never have been others.

  • Projects list empty?

    I have been using aperture 2 for 3 yrs and had a large project list with 90% held referenced on a HD. Fired up yesterday and aperture was totally empty as if it had just been loaded not even the lessons were there. All the referenced photos are still on my hard drive but the ones held in the Aperture library are now missing. Whats happened? I downloaded Capture one  the other day but have not imported anything into it yet, could this have caused the problem? Anyone got any ideas please.
    Simon

    Right, been searching my hard drives, on my external all the pictures are there still in their folders, on my Imac Hard drive in user, Simon(me), Pictures the aperture library and all the non referenced photos seem to be there, but not one project or photo are showing in aperture,
    Simon

  • Difference between list.clear() and new instance

    In the below code,
    List<String> test = new ArrayList<String)();
    list.add("one");
    list.add("two");
    list.add("three");
    list.clear();
    (or)
    list = new ArrayList<String)();
    list.add("four");
    list.add("five");
    What is the difference between List.clear() and creating new instance for list?

    1. Use code tags to post codes -- [code]CODE[/code] will display asCODEOr click the CODE button and paste your code between the {code} tags that appear.
    2. Invoking clear() sets all the elements of the ArrayList to null and resets the size to 0.    public void clear() {
         modCount++;
         // Let gc do its work
         for (int i = 0; i < size; i++)
             elementData[i] = null;
         size = 0;
        }(modCount is used to detect concurrent modification and throw an Exception when needed)
    Constructing a new ArrayList creates a new, different, empty ArrayList.
    In many situations they might be equivalent, but not in a case where you have two or more variable references to the same ArrayList. Example (watch out for typos)ArrayList<String> stringsA = new ArrayList<String>();
    ArrayList<String> stringsB = stringsA;
    : // add elements to stringsA
    : // stringsB refers to the same populated list
    stringsA.clear(); // stringsB refers to the clear()ed list
    : // add elements to stringsA again
    stringsA = new ArrayList<String>(); // stringsB still refers to the populated listdb

Maybe you are looking for

  • How much memory for the G5 2.7?

    I am buying a refurbished G5 2.7 from Apple. The primary application will be Pro Tools HD2 for audio mixing. QUESTIONS: (1) How much memory will I likely need? 2GB? 4GB? (2) I will buy the memory from Crucial. Should I remove the original memory and

  • Show payment method in the invoice

    HI, Our client offers 3 different payment options: Credit Card 30 Day Account Direct Deposit How can i show this in the invoice - I can't seem to find the correct tag to display the option chosen. Or is it not possible? Cheers, Henry

  • Regarding CBS buildspace / JDI Track

    Dear all,    I've a total of 0 broken DCs in EPD_EMITRACK_D..and all these  Dcs are healthy,built successfully .but in EPD_EMI_TRACK_C,there's one broken DC,and it leads to fail of transportation of the activity. Any idea how to solve it? thank you R

  • SharePoint 2013 workflows requires site level contribute access or higher

    I have a SP 2013 workflow on a list that resides on the root of the site collection.  All users have contribute rights to this list, to the Workflow Tasks list, and to the Tasks list.  But all general users have only READ level access to the site.  I

  • Media Server on EA4500

    Hello everyone...I just setup the Linksys EA4500 router on my computer and I am able to hook up to the internet on my computer and on my Logitech Revue.  How do I access the media server?  It is not showing up on the Logitech Revue or my Samsung TV?