Why is my project permanently "dirty"?

My project has recently become permanently "dirty".
By "dirty", i mean:
-- There is an asterisk next to the file name in the title bar.
-- If I close it, it warns me about unsaved changes.
If I ask it to LIST UNSAVED CHANGES, it tells me:
 "An attribute of the project was changed."
The details for that change say:
 "An attribute of the project was changed."
Gee, thanks.
If I SAVE it, the asterisk goes away, but when I open it again, it's back. 
It's a dual target project with PXI as one target.
FWIW, There are a few VIs which run on both sides, with conditional compilation symbols to modify the behavior slightly.
Any ideas? 
Steve Bird
Culverson Software - Elegant software that is a pleasure to use.
Culverson.com
Blog for (mostly LabVIEW) programmers: Tips And Tricks

CoastalMaineBird wrote:
My project has recently become permanently "dirty".
By "dirty", i mean:
-- There is an asterisk next to the file name in the title bar.
-- If I close it, it warns me about unsaved changes.
If I ask it to LIST UNSAVED CHANGES, it tells me:
 "An attribute of the project was changed."
The details for that change say:
 "An attribute of the project was changed."
Gee, thanks.
If I SAVE it, the asterisk goes away, but when I open it again, it's back. 
It's a dual target project with PXI as one target.
FWIW, There are a few VIs which run on both sides, with conditional compilation symbols to modify the behavior slightly.
Any ideas? 
AS usual your "gut" has served you well. The acual culprit(s) could be hard to say but the most common reason is the error handling VI's. Error codes can be defined from a bunch of places but a different set of drivers OR hardware targets will result in the General Error Handler getting updated so it reports properly on the target is runs on.
Just trying to help out,
Ben
BTW: This behaviour irritates me since I count on the asterisk telling me if I changed something.
Message Edited by Ben on 09-30-2008 07:45 AM
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • Why is my project so big?

    Hi guys,
    *using DVDSP4
    I'm having trouble with a large project that I am working on. It is mainly consisted of many menus (using .psd files), and some m2v menus as well.
    The project is about India. So it is ALL the states of India with a brief summary of each, m2v menus with links to more infomation (menus using .psd files).
    I will attach a few screen caps of my project so that this may be a little easier to understand.
    All the assets that I am using for the project fit onto a DVD, so im a little confused as to why in the project, the files is so huge. It is adding up to be 17.9GB! I have gone through the assets deleting what I do not need, and tried to make sure that I am not doubling up on any tracks or menus. I am using the bare necessities of my assets. Could this be because of all the menus?I know that my m2v files may be compressed too big or something but other than that would there be something else affecting my project size?
    I have tried a little testing with this project to what is affecting the size the most.
    I tried deleting (*on each state) most of the still image menus(.psd) and leaving just the m2vmenu because there is audio in them explaining mainly what the still images did.
    I need to keep the psd stills for the tourist information sections so I cannot delete those files.
    Any help would be great.
    thanks
    Links to screencaps:
    http://www.soulstruck.ca/maple/pic1.jpg
    http://www.soulstruck.ca/maple/pic2.jpg
    http://www.soulstruck.ca/maple/pic3.jpg

    OK - this gets a little intense, but stick with it... (this should probably be its own thread).
    There are at least two ways to do this without scripts, depending on how you have the project set up.
    Firstly, if the menu buttons point to a track each and not a part of a track (i.e. a chapter) then you can simply set the end jump and use the drop down options in the property inspector to find the precise menu and button that you want to go to. This is one good reason why people put a single clip into a track and create lots of tracks.
    Secondly, if you do have each clip one after the other in a single track (which is more logical to me...) then you can use stories - each set of chapters that you want the menu button to play goes into a story container... your menu button then points at the container, not the marker. Each story container can have its own end jump which you can set using the property inspector, taking you back to whatever button you want (in the same way you do for a track).
    However, if you want to do this with scripts there are again at least two ways to do it.
    Firstly, you need to know that each element on your DVD is assigned a number and you can use these numbers to know what has just been played, or what button was previously selected on a menu. There are also two types of memory spaces in a DVD player - those that hold information automatically, such as what chapter has just played, or what button was just 'pressed', and those that you can fill with information yourself. Using a combination of these facts you can tell which chapter has just played and go to the next logical button on any menu, or you can keep track of which button you last selected on a menu and go back to the appropriate one in the sequence.
    You do it like this:
    1) Using the chapter information
    Create a script and set it as the menu call for the track. Add the following details using the script editor (details in the manual)
    mov GPRM0, SPRM7
    Jump Menuname [GPRM0]
    This script will track what the last chapter was that you have played, and will place the value into the first memory slot (called GPRM0). The chapters are numbered 1-99, so GPRM0 will receive a number in that range. The second line is a GPRM based button jump, which means that you will jump to the menu you specify (replace 'menuname' with the actual menu name) and the button that has the same number as the value in GPRM0. Your buttons are numbered in the order you create them.
    2) Tracking the last button selected
    Create a script and set it as the menu call and the end jump for the track. Add the following:
    mov GPRM0, SPRM8
    div GPRM0, 1024
    Jump menuname [GPRM0]
    This time, the SPRM is keeping track of the last button used. These are numbered from 1024 upwards by the DVD player, in increments of 1024, so the second button will have a value of 2048, etc.
    The second line converts that value to a number we can use for menus, and the third line jumps to the menu with a GPRM based jump as before.
    It gets more complex if you have more than one menu that accesses the track, but it isn't unmanageable.
    Told you it was intense!

  • Project is "dirty" after a build

    My project is saved. After doing a build, the "dirty" flag shows up in the title bar of the project window and it asks me to save changes when I close the project. The Explain Changes dialog says "An attribute of the project was changed". For some mysterious reason, someone never thought it worthwhile to let the user know exactly WHAT attribute changed.
    So now I must ask for help on what attribute might have changed and, more importantly......WHY? The answer will need to be passed on to those who are responsible for maintaining my software and who might ask the same question when they do another build.
    NOTE: When I first bring up my project it is not "dirty" and I can close it without a Save Changes dialog popping up. It's only after doing a build that this happens.
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

    Aaarrggghh......nevermind.....I am using the automatic version numbering option. Obviously the new version number needs to be saved with the project,
    which makes sense. Just wish it had told me that.
    “A child of five could understand this. Send someone to fetch a child of five.”
    ― Groucho Marx

  • Drag drop photo import to aperture folder why auto new project folder appear .

    i do import photos from desktop  to folder that i want in the aperture libary  . as soon as i drag and drop photos automatically new peoject folder appear in the libabry as name untitled project.. why? i dont want that new project folder.  i try to delete that folder and my picture all automatically deleted from library.
    also if i try to delete photos from preject folder .. it completely deleted from master library .. picture will be lost.. why?
    i drag and move pictures to  brand  new album or folder .. then try to delete wanted project folder - master picture are all gone.
    now i have at least 30-40 of untitled project folder in the library ... pictrure are not movable i meant you can move but u still have to keep old project folder to avoid master picture can not be deleted ...
    someone help me? did i make myself clear?

    You might read the manual or the Help as this is all covered there.
    If you want to import to a specific project use the File -> Import option. You can select your destination there.
    Every photo in a Library is in a project. Projects are the basic building block of the Library. That's why.
    Folders don't contain photos. They can contain Projects or Albums. These contain photos. Albums don't contain the actual photos, just links to them. So if you add a photo to an Album and then delete the project... you delete the photo.
    Remember: you don't move photos to an Album, you add them.
    Regards
    TD

  • Why does my project keep quitting on it's own?

    Hello all;
    I have a important editing to do, but my Premiere project keeps quitting on it's own, I have no clue why. It never happened before, and the only thing that has changed is that I'm not on the same wifi and the same screen, I brought my Mac mini to work somwhere.
    Please help if you have an idea of what's happening.
    cheers

    FAQ: What information should I provide when asking a question on this forum?

  • Why does iMovie project jerk and stop and start in preview?

    I have been making iMovies with iMovieHD for years using photos with the Ken Burns effect.
    Recently after a movie project gets more than a few minutes long with typical audio and transitions, I no longer can preview it without it jerking and stopping and starting.
    Obviously this does not allow me to see what I am doing, how the music matches or doesn't match my photos.
    I have tried emptying the iMovie trash and emptying my finder trash, no change.
    I have made sure there is plenty of hard disk space on my internal drive, where iMovie and the movie file is located.
    Any ideas?

    Hi
    a. Emptying the trash - something I alway avoid - no matter why.
    b. Plenty of free space on internal (start-up) hard disk ? > 25Gb after
    project is captured and edited ?
    c. Deleted iMovie pref file ?
    d. Known trouble maker: Lot's of audio clips. eg > 50 gives a stuttering result
    Mix down audio to one audio clip.
    e. What kind of original material. 12-bit audio or recording in LP-mode (90min
    on a 60min tape) GIVES problems + audio sync troubles.
    f. .mpg4, .avi, .wmv and other ailient file formats also is problematic.
    g. movie stored on an external USB/USB2 hard disk - often troublemaker.
    I use FireWire AND ONLY: Mac OS Extended formatted -
    UNIX/DOS/FAT32/Mac OS Exchande DOESN'T WORK
    Yours Bengt W

  • Why is my project freezing at the end of each video demo?

    I've created a project with three different video demos. I've done all the editing and have the video slides in the right order, however, each video demo freezes at the end instead of continuing on to the next video demo.
    Please help.
    Thanks,
    Jaimie

    Are you positive that it's not just downloading the next video in the background and that's why it just looks like it's stalled?  What happens if you just let it sit there for a minute or two?  Does the next slide then start playing?

  • Why events and projects

    hi all
    why change the notion of projects and edits. Events and Projects makes no sense. you dont edit an event. What is wrong with starting a project and having edits within that. ive been a long term fcp editor, and even love the new timeline in X but the front end, its terrible. i just want to make some bins put some clips in them organise it myself. the auto organise thing is handy but should not be the main way of doing things.
    Events doesnt even make sense in iPhoto so why adopt it in a 'PRO' editing program

    No harm to the projects in trashing render files. Drag the render folder for a specific project to the trash. (However, I'd be surprised if this were the cause of your crashes.) Maybe do it for one and then hide all the other projects. See whether it still crashes.
    You can have a dual boot system (I run one) with FCPX on each. I've found, however, that the App Store sometimes gets confused if both are mounted at the same time – so it's possible it may balk at downloading if it sees the other. As I recall (it was a while ago) I installed by using a copy of the app.
    FWIW, I find that FCPX runs faster and is more stable on 10.8 than on 10.6.
    Returning to your crash problem: Hide your projects in a temp folder. Open FCP and create a new event and import some media. Create a new project. Hopefully that will open OK.
    Then close FCP and move one of the hidden projects to the main FC Project folder. Open FCP and see whether it functions OK. Keep repeating, as we're looking to identify a corrupt project.
    Russ

  • Why do my projects and photos keep disappearing?

    So I've imported a bunch of photos into Aperature, and into a specific project and then I leave thre program and re-enter the project and the photos are no longer there, I just get a untitled project with no photos in it. Any ideas? I've lost over 1000 photos and have no idea where they've gone.

    So after the subscriptions disappeared yesterday, I resubscribed to Democracy Now! and Bill Moyers Journal.
    This morning, I went to check iTunes... and two of the subscriptions were gone -- AGAIN! And the episode of Democracy Now! that remained behind was now listed under real Tim with Bill Maher.
    I'm getting so frustrated with this... why am I having to re-subscribe to podcasts every day now?

  • Why we use Project system?

    Hello Gurus,
    I would like to know why Project system is use? (in what case we can implement this project system module?pl explain me with example.
    Thanks in advance

    hi,
    another advantage of PS is that it is directly integrated with you FI, MM, HR and other modules you may have..
    PS can be used to schedule, monitor and track projects in terms of schedules and dates etc... but you have also other software you can use for that such as Primavera or even MS Project..
    however with PS, the costs and revenues that you have in the project directly flow into your accounting department and project related reports for management can be obtained..
    also your material requirements for all projects in the company can be centralized for better procurement using MM module..
    and various other advantages with the other SAP modules..
    regards

  • Why does my project not stay rendered ?

    Hi, things are generally going swimmingly.
    However, after rendering for smooth play of titles and fx and then closing, upon opening the project again, the render is gone and I must render again.  Is this the norm?  Why don't those areas stay rendered.  I understand that if I change a title or transition, it will be necessary to render.  It's just annoying to have to render each time I open the project.
    Also, I get occasional messages that there is a major problem and Adobe has to close.  Which it does.
    toutmeister 

    John,
    You are correct that the Rendering should "stick," no matter how many times you Close/Open the Project, or reboot the computer. Still, some users report issues with the Renders sticking.
    For starters, the Renders are basically "proxy files," that PrE (or PrPro) uses for smoothest playback. These files are linked to in the Project file, the PREL in PrE, or the PRPROJ file, in PrPro. Sometimes, those links can be broken, and for various reasons. Usuallly, if the link is broken, the program will ask "Where is Render file _____.AVI?" though not always. In most of the cases of "missing" Render files, no dialog screen appears.
    Some of the elements that can contribute to the missing Renders are:
    External HDD's used for the Scratch Disks
    Networked drives used for the Scratch Disks
    Some totally unknown problem
    The first two are usually obvious, when the question, "where are your Scratch Disk files located?" but for the third, its a mystery, and fortunately only affects a few users. If there is no issue with #'s 1, or 2, then it's a case of # 3. Do #'s 1, or 2, apply in your case?
    If it's any consolation, it seems that # 3 also happens with PrPro CS4 and CS5, and even Adobe does not have a cause, or fix. From following these issues, when # 3 hits, there seems to be nothing in common, between the Projects of those, who are "bitten." Each case seems different, and many of those users only have it with a single Project. The next half-dozen will stay Rendered. So far, it's been impossible to track this down, or even identify a Project, where it is likely to happen.
    Sorry that I do not have more to offer, other than to say, either Re-render, or if it's not really necessary, let it go. I have many Projects, where playback is adequate, and I do not bother to Render, while I have others, especially with a lot of Keyframed animation, where I might Render a section dozens of times, while I adjust things.
    For some more background on Rendering, see this ARTICLE.
    Good luck,
    Hunt

  • Why does my project and imported media in browser missing frames?

    Hello!!!
    I have been using Final Cut Pro for about 6 months now and loved everything about it! However, since I have updated my software system and app itself I have been experiencing "missing frames" during playback and in the clip itself in my event browser. I have tried downloading Preference Manager to resolve the problem and it still doesnt help. What is the problem? Why does this happen? and what can I do? Is it an import setting? or maybe a recording setting on my camera.
    Please a solution would be greatly appreciated as I have deadlines to make and I can't fluently edit my projects.
    Additional info: when I export a file that misses frames during playback it is smooth and nothing seems wrong.
    Thanks guys!!!

    Some things to check:
    Your media drive should have 15-20% free space. Does it after your clean up?
    What kind of connection…Thunderbolt and USB3?
    Is quality set to Better Performance?
    If the answers to all of the above are yes, and you're still having problems, download and run one of the speed tests from ALA or Blackmagic.
    Create proxy media and edit with Proxy, (Don't forget to change the setting back to Original/Optimized before you export.)
    Russ

  • Why is my project video jittery as I crop and add clips

    Why when I crop a video clip and drag it from event area to project area does the project video clips get jittery looking? Am I cropping them wrong or doing something? Or is the format wrong. I have always cropped and added bits of the video from event to the project area and this hasnt happened before. Please help! Thank you in advance for your time and expertise.
    Blessinsg Cindy

    There is no way to trouble shoot this problem without comp details or a screenshot. The only guess I can make is that your work area is set to 10 seconds. The other guess is that 10 seconds is the limit of your ram preview because of system resources.

  • Why did my project disappear from the project library?

    I recently finished a project, exported it to the "project file" in the Movie folder, and from there burned it to a disk. No problem. Since then, I have been thinking about making a couple of changes to the project, but when I opened the Project Library in iMovie, lo and behold, it was nowhere to be found. All of my other projects were there, but this one was gone.
    I looked in the project file in the Movie folder, and there it was, along with the movie, but I can't edit it any further in its present location. If it were in the project library (where it belongs), I could certainly edit it, but I can't figure out how to get it back there, so to speak.
    Two questions: first, why did it disappear from the Project Library, and second, what can I do about it now? I could always start from scratch (using clips in the Event Library), but that means doing everything over again, which I prefer not to do. Any ideas?

    I've got the similar problem:
    https://discussions.apple.com/thread/3628821
    any one able to solve it???
    I've also restarted a million times but it still doesn't seem to work...
    thanks

  • Why will my projects not move to an external hard drive within iMovie?

    My movie list has grown so big I need to move them into an external hard drive. I searched on apple.com and found out the way this is best done. Firstly it states that it is done within iMovie, which is what I did. Secondly it states that you select a toggle button to display the various hard drives which are attached and again I did this and can see the hard drive I want to move the projects and events into. I then selected the projects and dragged then over the relevant hard drive, I can not seem to drag the event. However when I release the project to drop it into the hard drive it won't fall. It just returns back to it's starting position in the Project Library. I have tried to do this both with holding down the cmd button to move them or without the cmd button to copy them.
    For some reason my files, either events or projects, won't move into the displayed hard drive. I am not sure if there is a bug in my iMovie8 or my hard drive is some how not configured properly. The hard drive was bought especially for a mac and runs Mac OS Extended (Journaled).
    Can anyone suggest what is happening and how to get around this? In worst case is there a way to move the files outside of imovie that will still allow them to be properly displayed within imovie?

    Hi
    Can anyone suggest what is happening and how to get around this? In worst case is there a way to move the files outside of imovie that will still allow them to be properly displayed within imovie?
    I don't think that it can be done that way - BUT I KNOW that it can be very destructive
    most probably end up as un-reparable.
    The move of projects and events - works so much better in iMovie'09
    Yours Bengt W

Maybe you are looking for

  • Creating and Using View Objects on JDev 10g against SQL Server 2005

    I'm currently working on this project on Jdeveloper against a SQL Server 2005 DB (I couldn't talk this people to migrate to Oracle... :-( ), and it's the first time I work with JDev against a database other than 10g. I had no problem making the conne

  • 1st generation MacBook, battery and Leopard issues; looking for help please

    I have a 1st generation MacBook that started having battery problems immediately after installing Leopard. it was the same issue many others have complained about; battery life shortened and shutting down while on battery power with no warning. I hav

  • Missing Certrificate in Mail - how to fix?

    Help!  I can't send mail and get this message.  Can anyone tell me what's going on?

  • Problem in installing certificate

    I tired to install trial certificate from verisign. I followed the instruction as in the admin guide First installed the certificate in server cert tab under manage certificate then installed in CA cert tab to make the certificate trust. It went well

  • Problems with MSVCR80.dll not found, cannot install itunes

    tt2,  I'm using your instructions given earlier about removing 5 apps and downloading iTunes.  I got lost at 're-installing' using run as administrator or administrator rights.  How do I do that?  I assume its ok to see the error message that the sys