How do I prevent AE from saving .AEP files in the wrong folders?

I've been using AE heavily for about 6 months, and it has this really pesky basic Windows UI problem that makes life quite frustrating. I work on lots of projects that I maintain sequentially numbered in their respective folders. Typically in Windows when you choose "Save As" windows defaults to the folder the current file resides in.  For some reason After Effects defaults to the last folder I saved a file in, which often times is not the folder I am in. So I end up with project files from projectA stored in the projectB folder.  This leads to version control problems when members of the team can't find the most recent version of projectA and so they start working on the previous version of ProjectA and later on ask me where all my changes are.  I want to believe that AE has a checkbox in preferences somewhere that says "make save-as feature operate like every other windows program" - but I haven't found it yet.  Does anyone have any advice on this topic?

I want to believe that AE has a checkbox in preferences somewhere that says "make save-as feature operate like every other windows program" - but I haven't found it yet.  Does anyone have any advice on this topic?
I think you are operating on wrong assumptions - a project is just a reference to other files plus some internal data, so it doesn't exactly make sense to maintain endless lists of absolute paths, given that you can import things back and forth in a million ways. What happens as soon as you import a project into another one? What, when you collect files? What happens when you re-import pre-rendered files? A "same origin" policy would be riddled with tons of issues to figure out the logic as to what the user actually wants to do and which path is the correct one.... I've never missed any such feature.
Mylenium

Similar Messages

  • How can I plott data from a text file in the same way as a media player using the pointer slide to go back and fort in my file?

    I would like to plott data from a text file in the same way as a media player does from a video file. I’m not sure how to create the pointer slide function. The vi could look something like the attached jpg.
    Please, can some one help me?
    Martin
    Attachments:
    Plotting from a text file like a media player example.jpg ‏61 KB

    HI Martin,
    i am not realy sure what you want!?!?
    i think you want to display only a part of the values you read from XYZ
    so what you can do:
    write all the values in an array.
    the size of the array is the max. value of the slide bar
    now you can select a part of the array (e.g. values from 100 to 200) and display this with a graph
    the other option is to use the history function of the graphes
    regards
    timo

  • How do I prevent Spotlight from categorizing 'JAR' files as 'Application'

    I'm a java developer and consequently I have a lot of JAR files on the filesystem. The JAR file format is a standard archive format for java, and is used mostly to package library code - the java equivalent of a DLL. They can also be created as 'executable JAR's, but this is (very) infrequent compared to the library usage.
    Spotlight seems to think every JAR file is an application, and because I have a lot of java applications and development stuff installed, I can no longer reliably use Spotlight to find actual applications because the search results are overflowing with useless JAR file entries.
    Is there any way to configure spotlight to not classify JARS as applications? Or, alternately, can I make Spotlight ignore JARs completely? Either would save me a lot of time..
    /Bill

    There are several things in the current version of Spotlight that are either broken or just plain wrong. It looks like you have found another. When I look at the metadata for a jar file I see that its type is, well, a java jar file, and its content tree declares it to be a com.sun.java-archive. Finder gets this right: if you do GetInfo on such a jar file its kind is shown as "Java JAR file"--as it should be.
    When I made a saved search, using the Kind drop-down menu to get the pre-defined Application, and then looked to see what criteria Spotlight was using to define "application" (and yes, the search included jar files in its results), I discovered Spotlight was NOT using the simple, straightforward "kMDItemKind=Application" as one would expect. Instead it is using something I had never heard of to define an Application, to wit "_kMDItemGroupId = 8"--furthermore, I believe characterizing applications that way has been deprecated. Be that as it may, it doesn't work to find the things you want, and exclude the things you don't.
    There is no way for a user to fix this. The only thing you can do is not let Spotlight define the kind. Thus, if you bring up a search window do not use the Kind drop-down menu to select Application. Instead select Other from the menu and then type Application. You then get only things whose type declaration is Application, and you don't get jar files or widgets.
    The other option is to exclude jar files by typing
    NOT jar
    in the search for box (you'll still get widgets though). You can also add that boolean restriction if you are using the menu bar Spotlight search.
    Francine
    Francine
    Schwieder

  • How can I prevent Aperture from playing slideshow when hitting the play button on the keyboard?

    I am getting a bit frustrated by the fact that the play button on the keyboard, which I use all the time for controlling audio playback in iTunes and now Spotify, is assigned to starting the slideshow in Aperture. Playing a slideshow is something I never use, and is something that causes the beachball of death to appear every time. It does not make sense to me that the slideshow overrules the audio playback in iTunes. Help is much appreciated...

    In Aperture the keyboard shortcuts are defined in the Command Editor.
    To open the Command Editor,  go to the Aperture menu -> Commands -> Customize
    and in the search field enter "slideshow". Remove or replace the key binding you find there, if it is the one you want to use in iTunes.

  • How do I prevent Firefox from automatically placing me in the tab that is created when I click on a link?

    For example, sometimes I want to open all the links in a "Google Alerts" email in new tabs BEFORE I look at any of them. By default, I have to keep clicking back to the original email after I click each URL. I want to be able to open multiple links in new tabs without being automatically placed into each tab after every click. I know I can right click and say "open in new tab" but I want to just be able to click on the link.

    Are that regular links or are they handled by JavaScript ?
    There are three prefs, accessible via the about:config page, to control the focus if you click a link.
    *browser.tabs.loadInBackground (normal links; also Via Options > Tabs)
    *browser.tabs.loadDivertedInBackground (javascript)
    *browser.tabs.loadBookmarksInBackground (bookmarks and searchbar)
    See also http://kb.mozillazine.org/about%3Aconfig_entries

  • How can i prevent checkboxes from resetting when shutting down the app?

    Hi, i'm trying to make an app for a coin database.
    Below a photo of the coin i put a checkbox or a switch to indicate what i have.
    When closing and reopening the app, all the checkboxes or switches are unchecked.
    Is there any way to let the app remember what was checked or unchecked.
    Thnx.

    Are you using a gallery to display your coins?  If so, this is what you'll need to do:
    Part 1
    1. Use a Collect function when the Checkbox is checked (and a RemoveIf function when the checkbox is unchecked.)
    2. SaveData function to save the data.  This can be done when the checkbox is checked.  Use a semi-colon to string functions together.
    Example (in the OnChecked):
    Collect (myCoins, {ID: CountRows(myCoins) +1, CoinName: txtMyCoin!Text, IsChecked: "true"}); SaveData(myCoins, "MyCoins")
    --> This code may not be 100% correct as I'm not on a computer with Siena while I'm writing this but it should be enough to get you started I hope.
    Part 2
    1. Use the LoadData function when you need the information to be loaded - usually in the OnVisible of a page.
    2. In the Default of the checkbox (in your Gallery) add this code: If(ThisItem!IsChecked = "true", true)
    --> Again, I'm not in front of my computer with Siena so I may be off here.  I'll edit this post if I'm way off.
    I hope this gives you a good start.  I can provide better examples if this isn't working for you.
    FYI - The code will look different if you're not using a gallery.  Hopefully you are as it sounds like the way to go in what you have in your example.
    Thor

  • How do I prevent CS4 from creating HTML files on export of an image?

    Everytime I export an image i am getting a html file created too.  It is annoying having to delete them manually every time, and there seems to be no option to turn this feature off.
    Generally I dislike CS4 compared to Macromedia Fireworks v8. 

    You need to select "images only" in the dialogue box when you choose Export
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • How do I prevent windows from being stacked up in the task bar?

    This happens even if there is enough room for all of them, and makes it harder to switch back and forth between windows.

    You should be able to set this via the properties of the Windows Task bar via the right-click context menu.
    *http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/win_tray_taskbar_groupitems_howto.mspx?mfr=true

  • How do I stop Firefox from saving a file that I only want to open?

    I have been trying to open .exe files on my computer, but instead of getting an 'open' option, I can only choose between 'save' and 'cancel'. Is there any way I can bring back my 'open' option?
    (I don't think it shows up during my other downloads, either.)

    No, you can't open an .exe file directly.<br />
    Firefox will only offer to save such an executable file to allow your anti-virus software to scan the file and give you extra time to reconsider if you really want to run.

  • How to read multiple lines from an external file to the Oracle data base

    Hi Guys,
    I have an external file which contains multiple lines and I want to read it to the data base .I have done it for the file if it contains one line.
    Please guide me how to retrieve all the lines into the data base.And also tell me how Oracle will come to know the end of the line in the file
    Thanks,
    Prafulla

    Hi,
    try this
    CREATE TABLE ab
    a VARCHAR2(1 BYTE),
    b VARCHAR2(2 BYTE),
    c VARCHAR2(10 BYTE),
    d VARCHAR2(11 BYTE)
    ORGANIZATION EXTERNAL
    ( TYPE ORACLE_LOADER
    DEFAULT DIRECTORY dir_name
    ACCESS PARAMETERS
    ( records delimited by newline
    fields (
    a POSITION(*) CHAR(1),
    b POSITION(*) CHAR(2 ),
    c POSITION(*) CHAR(10 ),
    d POSITION(*) CHAR(11 )
    LOCATION (dir_name:'filename.txt')
    REJECT LIMIT UNLIMITED
    NOPARALLEL
    NOMONITORING;
    Regards,
    Simma....

  • Whenever I open a file of any type, that file will open, as well as multiple other files I do not wish to open.  How do I prevent this from happening.

    Whenever I try to open a file of any type, that file will open, as well as several other files I do not wish to open.  How do I prevent this from happening?

    Dealing With The Resume Feature of Lion
    Managing Mac OS X Lion's application resume feature.
    If you shutdown your computer you should get a dialog asking if you want applications to resume on the next startup. Simply uncheck the box to prevent that from occurring. Open General preferences and uncheck the option to Restore windows when quitting and re-opening apps. You can also install a third-party utility to control resume features on individual applications: RestoreMeNot or Application State Cleaner.
    It is possible to completely stop the Resume feature although I'm unconvinced that it is that annoying. Nevertheless see the following:
    If you have not yet done so you must first make your /Home/Library/ folder visible. Open the Terminal application in the Utilities folder. At the prompt paste the following command line:
    chflags nohidden ~/Library
    Press RETURN. Quit the Terminal application.
    In the Finder navigate to the /Home/Library/Saved Application State/ folder. Delete the contents of the folder. Back up to the /Home/Library/ folder. Select the Saved Application State folder. Press COMMAND-I to open the Get Info window. In the Sharing and Permissions panel at the bottom click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window.
    Quit all open programs except the Finder (this is very important.) Next, navigate to the /Home/Library/Preferences/ByHost/ folder. Look for a .plist file with "com.apple.loginwindow." in the file name followed by some numbers in hexadecimal. Select the file. Press COMMAND-I to open the Get Info window and in the Sharing and Permissions panel click on the lock icon and authenticate. Set each of the listed entries to Read Only. Close the Get Info window. If you also find a file with the same filename but with a last extension of ".lockfile," then you should delete it.
    The above should eliminate the Resume feature system-wide. Note that any future system updates or upgrades will likely undo these changes. You will then need to repeat this procedure assuming there are no major changes in OS X related to it.

  • HT204406 How do I prevent Match from "matching" a song?

    How do I prevent Match from "matching" a song? The version they're storing for me in the cloud is different from the one I OWN on my hardware. I don't like the "pop" version of my country songs and just want it added as is.

    "Two months after purchase my partner's mac says it is stolen and needs a PIN to unlock. "
    Does it give you a number to call?
    If so that's an ad scam.
    What does that screen look like? Take a picture and post it here.
    Was this after an update?
    Anyone else get locked out of their computer after turning on find my Mac?
    Installed Maverick and asked for four digit code
    You might have to take it to Apple and prove ownership.
    If you read through those it can happen if you're testing Find My Phone.

  • Preventing XI from consuming a file before it is time

    Hi all,
    I wish I could prevent XI from consuming a file in the outbound directory before it is time.
    There are two business aspects :
    <b>1</b>- a new file with the same name could be sent in the outbound directory and the old file should be erased by the new one
    <b>2</b>- the message(s) extracted from the file should be sent to the receiver only during a certain period when the receiving application is ready for it.
    As this problem is common to many scenarii, I am looking for some reusable solution.
    I thought of (or was proposed) the following solutions :
    - <b>event-driven messages</b> : the condition 2 is OK, but the file is consumed, so if a new file arrives, it is also consumed  and both sets of data are sent to the receiver. Therefore, condition 1 is not correct.
    - <b>BPM</b> : I am not yet familiar with this part of XI,  and I wonder whether it could work.
    - <b>module adapter</b> : as a Java developer, it was nearly piece of cake to say whether it was time or not to send the message(s) . But the module is executed after the file was processed, so condition 1 isn't fulfilled because the incoming file has been moved to archive directory before the authorized period. I tried to change the Processing mode from "archive" to "test" in order to avoid the file being moved and it works fine, except I'm not keen doing that in a production environment.
    Moreover, when it is not time, how to  cleanly" stop the process? I figured out I could sweep all data from xmlpayload so the process would carry one, but with no data. I don't know why, but it produces some mapping error and a red flag in monitoring. I also thought about throwing Exceptions, but I have no monitoring.
    It's quite a long blog, but I wanted to explain what the problem was and what ways I tried.
    Has anybody some advice to give me (except suicide, my boss wants his problem solved first ) ?
    Regards
    Yann

    Hi,
    >>>Isn't there any solution only using XI and Java (for functions, modules...)?
    yes but a littble bit more difficult:
    instead of the ABAP report you can send ANY
    scheduled message to the XI (using any adapter)
    and this will invoke the java proxy
    that will move the file to the correct folder
    so it can picked by the file adapter
    at that correct time
    BTW
    it's that with ABAP you have nice SAP scheduler
    that you can use
    Regards,
    michal

  • How do I keep Firefox from graying out sections of the URL?

    How do I prevent FireFox from graying out sections of the URL as it appears in the location bar? I hope I can keep the mechanism to get all the information information I can about the sites I'm using.
    Please let me know whether, if necessary, I could go back to another version of FireFox to avoid the graying out feature.
    Thank you for your help with this.

    Urlbar highlighting<br>
    <br>
    This is a feature in Firefox to highlight the domain in the URL bar. Other parts will become grey. You can change a preference to make the entire URL dark. Users can revert to the old behavior by setting '''browser.urlbar.formatting.enabled''' to '''false''' in '''about:config'''.<br>
    <br>
    To change this preference:<br>
    <br>
    type about:config in the Location/URL bar and press Enter.<br>
    if you see a warning, accept (promise to be careful)<br>
    Filter: browser.urlbar.formatting.enabled<br>
    in lower panel, double-click that item to toggle value to false<br>

  • My question is Itunes related.  How do you prevent a playlist saved in Itunes from alphabetizing the song list created. I wanted to keep the original order, and somehow everything was alphabetized without requesting it.

    My question is Itunes related.  How do you prevent a playlist saved in Itunes from automatically alphabetizing the song list.   I had a specific order of songs that I wanted, and Itunes somehow automatically alphabetized them.  Is there a way to turn that feature off, and/or get them back to the original order?   I also noticed that once a playlist has been created, I cannot manually changed the order of the songs from my desktop..  Any suggestions?

    That's just the sort order. It's displaying the media alphabetically because you have clicked on the NAME column near the top of the iTunes window.
    Click on the little triangle above the column of numbers (usually on the far left side of the main iTunes window) and the media will sort in the order in which you added each item to the playlist.
    You can easily reorder songs within a playlist: Click and HOLD on the song you wish to move, then drag-and-drop it wherever you like.

Maybe you are looking for

  • No Control Center Icon on macbook 10.6.8 and Brother printer MFC 665CW

    I don't have a control center icon on the menu bar. I drilled down from applications-printers and found controlcenter.app When I click on the controlcenter.app the screen flashes but does not open. Can anybody help ? glennsyrop

  • Php 5.2.4 or higher

    Hi, Beside the fact that FireFox crashes more often since last update, I found a website that doesn't want to open saying my FF is not up to date regarding php ?? It says: Your host needs to use PHP 5.2.4 or higher to run Joomla 1.6. I'm not sure if

  • Decode from other table?

    how can i decode a column value from another table? e.g. the view selects an ID from TABLE1 and wants to add a column "Description" that decodes the value of the ID column. The decode() function is usable for a small set of fixed decodings. But what

  • IWeb-based website being hacked?

    I'm hosting a client's iWeb site on a third-party server. Last month, the nav bar disappeared and I had to re-upload this script from my backup to fix it: /site_name/Scripts/iWebSite.js That was Sept 6th and it happened again recently. The file is sh

  • MuVo V100 - disgusting localisat

    I got muvo v00 model mounth ago, remembering manufacturer of my first sound card ) Buying CL I expected having no problems with sound quality. But I got a couple of other problems. I very disappointed with its firmware (last version for today, .02.03