Zum Hauptinhalt gehen

⚠️ Please note that this topic or post has been archived. The information contained here may no longer be accurate or up-to-date. ⚠️

Gremlin in C1iPro?

Kommentare

5 Kommentare

  • Ulf Liljegren
    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
  • Des1
    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 W
    0
  • Ulf Liljegren
    .... 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
  • Robert5
    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.

    ~Gully
    0
  • Mark711
    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 Luck
    0

Post ist für Kommentare geschlossen.