Gremlin in C1iPro?
Hi All,
Has anyone had this before-- I was moving 300 P25 images processed out as 351KB Jpgs to the MOVE TO FOLDER-when this dailog box kept popping up--I lost into oblivion over 40 files as they have disappeared from the original Folder as well-Damn worrying-what is this all about --any helpers???
Thank you
Des W
http://img.inkfrog.com/pix/team201/Picture_2.jpg
Has anyone had this before-- I was moving 300 P25 images processed out as 351KB Jpgs to the MOVE TO FOLDER-when this dailog box kept popping up--I lost into oblivion over 40 files as they have disappeared from the original Folder as well-Damn worrying-what is this all about --any helpers???
Thank you
Des W
http://img.inkfrog.com/pix/team201/Picture_2.jpg
0
-
From support I can say that we have not heard this and never experienced it either.
I use this feature every time I do a training or demo and it works like a charm. The software is basically just doing a move command. So if you do it in the software or in the finder or by command line.. result is the same. You migh however have a rights / hard drive issue.0 -
Thanks Ulf,
Yes it was puzzling --I've never seen it before-nor has half a dozen other local snappers with Phase Software. One of those things you would like to induce to see where the problem occurs.
Note your point on HD's/permissions /etc(MAC here)--will run Disk Warrior and have a housekeep today.
Thanks for the time to reply.
Des W0 -
.... I will give one more tip.
Cocktail I have found to be a fantastic tool.
http://www.maintain.se/cocktail/
This not a public Phase One endorsement but my personal opinion. (I have to say that right đ )0 -
Hey - I go that message once or twice when trying to move sloppily named test images to the trash; it SEEMS (correct me if I'm wrong) that, much like trying to rename an image with the same name as one already existing in that folder, if you try to move a same-named file (including the extension) to another folder, it won't move it. However, I don't know why they disappeared altogether... âšī¸ Good luck.
~Gully0 -
This is probably known by most users but since we are talking about files vanishing. Do Not start file names with a period "." or they will disappear. It is how the system is designed. The file is still there if you make it so you can see hidden files.
This script allows toggle of hidden files.
display dialog "Set the visibility of hidden files..." buttons {"Cancel", "Visible", "Invisible"} default button 1
copy the result as list to {buttonpressed}
if the buttonpressed is "Invisible" then
try
tell application "Finder" to quit
do shell script "defaults write com.apple.finder AppleShowAllFiles OFF"
delay 1
tell application "Finder" to activate
end try
else if the buttonpressed is "Visible" then
try
tell application "Finder" to quit
do shell script "defaults write com.apple.finder AppleShowAllFiles ON"
delay 1
tell application "Finder" to activate
end try
end if
Good Luck0
Post is closed for comments.
Comments
5 comments