Program to pic random files

I have a folder with thousands of pics in it. I need a way to randomly
pic just 1000 and store in another folder..Anyone seen anything like
this?

You can ask the question a different way: You have a set of values from 1 to, say, 10,000 (1 = picture1, 2 = picture2, etc). You want to generate a set of unique random numbers. See this thread for a few ways to do that: How can I generate multiple unique random numbers?

Similar Messages

  • Random Files

    Hello all,
    I have been going through my MacBook Pro and deleting stuff I really don't need and I went into documents and found
    over 1000 random files lurking in their. I'm not sure how it got there and why it's there.
    I clicked on one of the files and it went into Safari and displayed this:Anyway, when I read what was in the address bar, I noticed that this was coming from the program I have called 'Manga Studio 5'. The questions I have here are:
    1) Is there is any way to delete these files without having to select 6 at a time?
    2) Is there a reason as to why they are there? (MAYBE a question for anyone who has used Manga Studio before)
    3) Is there any way to stop this from happening with future usage or will it continue doing this?
    4) If I can't stop this from happening within the program, is there a way to stop it with the Mac?
    This is becoming a bit of a problem for me as my MacBook is becoming slower than before. I purchased this MacBook in late April this year and so far, so good. I haven't experienced this problem from other applications that would have needed to download, so I'm guessing something's up with this one.
    Thank you in advance

    Can't you select all of them at the same time and then move to trash all at once?
    If you get out of the thumbnail view and go into list view you can select all of them.
    What they are seems to be catalogs of your work created by the program. why there are som many I have no idea as I don't use that program.
    You might want to post this question over in the programs user forums. Also check for updates to the program.

  • Running a java program via a batch file

    I am unable to run a java program from a batch file that I created.
    spiderpackage.EntryPoint is a class file which I am trying to run with a -v option to output something.What should I do to get the output?
    echo ^<html^>^<body^>
    echo hello^<br^>
    call java spiderpackage.EntryPoint -v
    echo ^</body^>^</html^>

    This has nothing to do with java programming. Have a look at the windows help for the call command.
    The echo <html> stuff doesn't make sense. What's it for?
    The command in you batch file should be:
    java -cp . spiderpackage.EntryPoint -v
    assuming that java is in the system path, and the EntryPoint.class is in a directory called spiderpackage which is a subdirectory of your current working directory

  • Program Error- cannot open file? Please help! I lost my whole project!

    When I try to open an animation psd file, I keep getting a box that says my request could not be completed due to a program error. The file is 23.7 MB and I am using a PC.... I at least need to get the file open so i can export the animation.

    I don't personally know how to repair such a file, but I can suggest a utility that will be able to fetch an uncorrupted backup copy if it is in Window's Shadow copy.
    http://shadowexplorer.com/   It's a free and easy to use utility. I personally have it.
    Gene

  • I have recently updated my CC programs to the latest version and now all of my files wont open by default into their respective programs, only if I open the program and go to file open and open the file from there. How can I fix this?

    I have recently updated my CC programs to the latest version (CC2014) and now all of my files wont open by default into their respective programs, only if I open the program and go to file>open and open the file from there. How can I fix this?
    I have tried 'Open with' and the version of the program now installed on my computer isn't even suggested as an option and when I browse for it, the file wont open with it anyway

    On Windows (don't know about Mac), the latest version will always take over the file association, and become the default for indd files. It's impossible to change it.
    But there is a plugin for ID that makes this possible. Never tried it myself.
    https://www.rorohiko.com/wordpress/downloads/lightning-brain-soxy/

  • Add/Remove Programs - export to text file?

    Hello,
    I am wondering if it is possible to export a list of everything in add/remove programs to a text file for inventory purposes.
    I have not found any easy method to do this short of copying reg files or installer 3rd party software.  Since the idea is to save time neither of those are viable solutions.
    Does anyone have any ideas?
    -Justin

    You could try this vbs script that lists installed programs and add info to a text file.
    Michael Petersen
    Option Explicit  
    Dim sTitle  
    sTitle = "InstalledPrograms.vbs by Bill James" 
    Dim StrComputer  
    strComputer = InputBox("Enter I.P. or name of computer to check for " & _  
                           "installed software (leave blank to check " & _  
                           "local system)." & vbcrlf & vbcrlf & "Remote " & _  
                           "checking only from NT type OS to NT type OS " & _  
                           "with same Admin level UID & PW", sTitle)  
    If IsEmpty(strComputer) Then WScript.Quit  
    strComputer = Trim(strComputer)  
    If strComputer = "" Then strComputer = "." 
    'Wscript.Echo GetAddRemove(strComputer)  
    Dim sCompName : sCompName = GetProbedID(StrComputer)  
    Dim sFileName  
    sFileName = sCompName & "_" & GetDTFileName() & "_Software.txt" 
    Dim s : s = GetAddRemove(strComputer)  
    If WriteFile(s, sFileName) Then 
      'optional prompt for display  
      If MsgBox("Finished processing.  Results saved to " & sFileName & _  
                vbcrlf & vbcrlf & "Do you want to view the results now?", _  
                4 + 32, sTitle) = 6 Then 
        WScript.CreateObject("WScript.Shell").Run sFileName, 9  
      End If 
    End If 
    Function GetAddRemove(sComp)  
      'Function credit to Torgeir Bakken  
      Dim cnt, oReg, sBaseKey, iRC, aSubKeys  
      Const HKLM = &H80000002 'HKEY_LOCAL_MACHINE  
      Set oReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & _  
                  sComp & "/root/default:StdRegProv")  
      sBaseKey = "SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\" 
      iRC = oReg.EnumKey(HKLM, sBaseKey, aSubKeys)  
      Dim sKey, sValue, sTmp, sVersion, sDateValue, sYr, sMth, sDay  
      For Each sKey In aSubKeys  
        iRC = oReg.GetStringValue(HKLM, sBaseKey & sKey, "DisplayName", sValue)  
        If iRC <> 0 Then 
          oReg.GetStringValue HKLM, sBaseKey & sKey, "QuietDisplayName", sValue  
        End If 
        If sValue <> "" Then 
          iRC = oReg.GetStringValue(HKLM, sBaseKey & sKey, _  
                                    "DisplayVersion", sVersion)  
          If sVersion <> "" Then 
            sValue = sValue & vbTab & "Ver: " & sVersion  
          Else 
            sValue = sValue & vbTab   
          End If 
          iRC = oReg.GetStringValue(HKLM, sBaseKey & sKey, _  
                                    "InstallDate", sDateValue)  
          If sDateValue <> "" Then 
            sYr =  Left(sDateValue, 4)  
            sMth = Mid(sDateValue, 5, 2)  
            sDay = Right(sDateValue, 2)  
            'some Registry entries have improper date format  
            On Error Resume Next   
            sDateValue = DateSerial(sYr, sMth, sDay)  
            On Error GoTo 0  
            If sdateValue <> "" Then 
              sValue = sValue & vbTab & "Installed: " & sDateValue  
            End If 
          End If 
          sTmp = sTmp & sValue & vbcrlf  
        cnt = cnt + 1  
        End If 
      Next 
      sTmp = BubbleSort(sTmp)  
      GetAddRemove = "INSTALLED SOFTWARE (" & cnt & ") - " & sCompName & _  
                     " - " & Now() & vbcrlf & vbcrlf & sTmp   
    End Function 
    Function BubbleSort(sTmp)  
      'cheapo bubble sort  
      Dim aTmp, i, j, temp  
      aTmp = Split(sTmp, vbcrlf)    
      For i = UBound(aTmp) - 1 To 0 Step -1  
        For j = 0 to i - 1  
          If LCase(aTmp(j)) > LCase(aTmp(j+1)) Then 
            temp = aTmp(j + 1)  
            aTmp(j + 1) = aTmp(j)  
            aTmp(j) = temp  
          End if  
        Next 
      Next 
      BubbleSort = Join(aTmp, vbcrlf)  
    End Function 
    Function GetProbedID(sComp)  
      Dim objWMIService, colItems, objItem  
      Set objWMIService = GetObject("winmgmts:\\" & sComp & "\root\cimv2")  
      Set colItems = objWMIService.ExecQuery("Select SystemName from " & _  
                                             "Win32_NetworkAdapter",,48)  
      For Each objItem in colItems  
        GetProbedID = objItem.SystemName  
      Next 
    End Function 
    Function GetDTFileName()  
      dim sNow, sMth, sDay, sYr, sHr, sMin, sSec  
      sNow = Now  
      sMth = Right("0" & Month(sNow), 2)  
      sDay = Right("0" & Day(sNow), 2)  
      sYr = Right("00" & Year(sNow), 4)  
      sHr = Right("0" & Hour(sNow), 2)  
      sMin = Right("0" & Minute(sNow), 2)  
      sSec = Right("0" & Second(sNow), 2)  
      GetDTFileName = sMth & sDay & sYr & "_" & sHr & sMin & sSec  
    End Function 
    Function WriteFile(sData, sFileName)  
      Dim fso, OutFile, bWrite  
      bWrite = True 
      Set fso = CreateObject("Scripting.FileSystemObject")  
      On Error Resume Next 
      Set OutFile = fso.OpenTextFile(sFileName, 2, True)  
      'Possibly need a prompt to close the file and one recursion attempt.  
      If Err = 70 Then 
        Wscript.Echo "Could not write to file " & sFileName & ", results " & _  
                     "not saved." & vbcrlf & vbcrlf & "This is probably " & _  
                     "because the file is already open." 
        bWrite = False 
      ElseIf Err Then 
        WScript.Echo err & vbcrlf & err.description  
        bWrite = False 
      End If 
      On Error GoTo 0  
      If bWrite Then 
        OutFile.WriteLine(sData)  
        OutFile.Close  
      End If 
      Set fso = Nothing 
      Set OutFile = Nothing 
      WriteFile = bWrite  
    End Function 
    Deploy deploy deploy

  • When I close Photoshop CS6, the following message appears: "Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file.

    When I quit Photoshop CS6, the following message appears:
    " Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder."
    If I try to change the Workspace in PS6 from Essentials to any other Workspace, the following messsage appears:
    "Could not apply the workspace because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder."
    I have checked the Sharing and Permissions section of the "Get Info" panel accessed from the Finder and I have set Read and Write Privileges for my user account for Photoshop CS6. System and Admin are also set to Read and Write.
    I have a MacBook Pro with OS X Version 10.9.5 and have all available updates for Photoshop CS6, Lightroom 5 and Bridge CS6.
    I tried uninstalling the program and downloading it again and reinstalling, but nothing changed.
    Can you help?
    Thanks,
    cjpnm

    You may get better help in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll
    If FINDER means Mac, read below (and try to give more information when asking a question)
    Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0

  • Photoshop won't start: Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file.

    Adobe Photoshop CS6 Extended
    "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file."
    I've tried finding and checking and fixing permissions but no success.
    This happened from one day to the next. I think it has to do with the sn attached to the disk rather then the motherboard. I have the suite co-installed with Symphony 5.05. I've tried reinstalling.
    What's to b done? The rest of the Creative Suite 6 (AE, AI etc.) works fine.
    Anyone...?
    Loui

    Have you tried restoring the Preferences yet?

  • Why am I being told that a JPEG file that I made changes to in Photoshop 6 (CS6) can't be saved?  The message I get says that either the file is locked and I don't have permission to execute this or another program is using this file.

    i recently purchased a 21.5 iMac with Yosemite (10.10.1) and was disappointed to discover that my CS6 programs are not functioning correctly.  I am unable to use the "Save As" command  when making changes to a JPEG file in Photoshop.  The message I get says that either another program is using the file or it is locked and I don't have permission to execute that command.  I'm experiencing a similar problem in Bridge when trying to move an unwanted file to the Trash.  Again, I get a message telling me that i don't have permission to do this.  Lastly, I'm unable to open any Camera Raw files.  Any suggestions?  I had no problems with the Mavericks OS on my old iMac and although it's much slower, I'm tempted to go back to using my old iMac.  At this point, I feel as if I've just wasted $2300+ (tax included). 

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    resetp
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • New Mac user. On a website the "Browse" button/link to upload pics and files is not showing, but shows up when I check from another computer. Why is it not showing on my MacBook Pro?

    I just got my new MacBook Pro over the weekend, and was sooo excited. I wanted it to take back and forh to work with me. However on a website I use for work, I need to be able to upload files and pictures. but the area where the link/button "Browse" is normally at to add the pics or files, it is not showing up on my Mac. I thought maybe the site was messed up, but when I helped another coworker, I noticed on her screen (an HP computer) the link/button to browse files and upload is there. I came back to my MacBook Pro thinking maybe the website was working correctly again, but its still not showing up on mine. So I'm thinking its Mac related. MAybe theres a certain function I need to turn on for this?
    I tried to unblock pop ups, even though its not a pop up screen, but this didn't do anything. HELP!!!!!

    If the modem is also a router, either use the modem in bridge and run pppoe client on the TC.. that is assuming ADSL or similar eg vdsl. If it is cable service.. and the modem is a router, then bridge the TC.. go to internet page and select connect by ethernet and below that set connection sharing to bridge.
    Please tell us more about the modem if the above gives you issues.

  • My Photoshop CS6 keeps crashing on random file formats...How do I find the cause within the crash report?

    One of our users is experiencing crashes when opening random files. They range from regular Photoshop to JPEG files. The same errors is occasionally happening with Illustrator but it is predominate on Photoshop. The following are two crash reports that appeared after the crashes. How would I troubleshoot and figure out the cause by reading these reports?
    Process:         Adobe Photoshop CS6 [685]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.6 (13.0.6.54)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [140]
    Date/Time:       2015-01-28 10:57:13.638 -0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          304020 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  227317 sec
    Per-App Crashes Since Last Report:   12
    Anonymous UUID:                      2E5247B1-6C41-400D-BF9D-86E3AD22DBB8
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Main Thread  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x00007fff830d180c __CFTypeCollectionRelease + 188
    1   com.apple.CoreFoundation       0x00007fff830ceeae __CFArrayReleaseValues + 206
    2   com.apple.CoreFoundation       0x00007fff830aca73 _CFRelease + 179
    3   ...s.AutoActivationPlugin.PS13 0x00000001224af198 ActivateFontsForDocument(bool, int&, std::string const&) + 536
    4   ...s.AutoActivationPlugin.PS13 0x00000001224af586 HandleOpenedDocument(std::string const&) + 96
    5   ...s.AutoActivationPlugin.PS13 0x00000001224af714 OpenEvent(unsigned int, _ADsc*, int, void*) + 143
    6   com.adobe.Photoshop           0x00000001002e6526 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2366822
    7   com.adobe.Photoshop           0x000000010008ca4a 0x100000000 + 576074
    8   com.adobe.Photoshop           0x0000000100087547 0x100000000 + 554311
    9   com.adobe.Photoshop           0x00000001000873e3 0x100000000 + 553955
    10  com.adobe.Photoshop           0x00000001016ffd94 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20400788
    11  com.adobe.Photoshop           0x0000000100095d3b 0x100000000 + 613691
    12  com.adobe.Photoshop           0x0000000100087547 0x100000000 + 554311
    13  com.adobe.Photoshop           0x00000001000873e3 0x100000000 + 553955
    14  com.adobe.Photoshop           0x0000000101700554 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20402772
    15  com.apple.Foundation           0x00007fff8438abc5 __NSFireTimer + 114
    16  com.apple.CoreFoundation       0x00007fff830eebb8 __CFRunLoopRun + 6488
    17  com.apple.CoreFoundation       0x00007fff830ecd8f CFRunLoopRunSpecific + 575
    18  com.apple.HIToolbox           0x00007fff89a6f7ee RunCurrentEventLoopInMode + 333
    19  com.apple.HIToolbox           0x00007fff89a6f551 ReceiveNextEventCommon + 148
    20  com.apple.HIToolbox           0x00007fff89a6f4ac BlockUntilNextEventMatchingListInMode + 59
    21  com.apple.AppKit               0x00007fff8150aeb2 _DPSNextEvent + 708
    22  com.apple.AppKit               0x00007fff8150a801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    23  com.apple.AppKit               0x00007fff814d068f -[NSApplication run] + 395
    24  com.adobe.Photoshop           0x0000000101700462 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20402530
    25  com.adobe.Photoshop           0x000000010170172c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20407340
    26  com.adobe.Photoshop           0x0000000100087bdd 0x100000000 + 555997
    27  com.adobe.Photoshop           0x00000001002c9bdc boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249756
    28  com.adobe.Photoshop           0x00000001002c9cb9 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249977
    29  com.adobe.Photoshop           0x0000000100002444 0x100000000 + 9284
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff840dbc0a kevent + 10
    1   libSystem.B.dylib             0x00007fff840ddadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff840dd7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff840dd2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff840dcc08 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff840dcaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff840fda6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84101881 _pthread_cond_wait + 1286
    2   MultiProcessor Support         0x0000000119e1b19b boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 5483
    3   MultiProcessor Support         0x0000000119e1b05c boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 5164
    Process:         Adobe Photoshop CS6 [892]
    Path:            /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:      com.adobe.Photoshop
    Version:         13.0.6 (13.0.6.54)
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [140]
    Date/Time:       2015-01-28 11:02:06.600 -0800
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          304307 sec
    Crashes Since Last Report:           17
    Per-App Interval Since Last Report:  227516 sec
    Per-App Crashes Since Last Report:   15
    Anonymous UUID:                      2E5247B1-6C41-400D-BF9D-86E3AD22DBB8
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread:  0  Main Thread  Dispatch queue: com.apple.main-thread
    Thread 0 Crashed:  Main Thread  Dispatch queue: com.apple.main-thread
    0   com.apple.CoreFoundation       0x00007fff830d180c __CFTypeCollectionRelease + 188
    1   com.apple.CoreFoundation       0x00007fff830ceeae __CFArrayReleaseValues + 206
    2   com.apple.CoreFoundation       0x00007fff830aca73 _CFRelease + 179
    3   ...s.AutoActivationPlugin.PS13 0x0000000136c11198 ActivateFontsForDocument(bool, int&, std::string const&) + 536
    4   ...s.AutoActivationPlugin.PS13 0x0000000136c11586 HandleOpenedDocument(std::string const&) + 96
    5   ...s.AutoActivationPlugin.PS13 0x0000000136c11714 OpenEvent(unsigned int, _ADsc*, int, void*) + 143
    6   com.adobe.Photoshop           0x00000001002e6526 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2366822
    7   com.adobe.Photoshop           0x000000010008ca4a 0x100000000 + 576074
    8   com.adobe.Photoshop           0x0000000100087547 0x100000000 + 554311
    9   com.adobe.Photoshop           0x00000001000873e3 0x100000000 + 553955
    10  com.adobe.Photoshop           0x00000001016ffd94 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20400788
    11  com.adobe.Photoshop           0x0000000100095d3b 0x100000000 + 613691
    12  com.adobe.Photoshop           0x0000000100087547 0x100000000 + 554311
    13  com.adobe.Photoshop           0x00000001000873e3 0x100000000 + 553955
    14  com.adobe.Photoshop           0x00000001016ffd94 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20400788
    15  com.apple.AppKit               0x00007fff814d06de -[NSApplication run] + 474
    16  com.adobe.Photoshop           0x0000000101700462 AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20402530
    17  com.adobe.Photoshop           0x000000010170172c AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 20407340
    18  com.adobe.Photoshop           0x0000000100087bdd 0x100000000 + 555997
    19  com.adobe.Photoshop           0x00000001002c9bdc boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249756
    20  com.adobe.Photoshop           0x00000001002c9cb9 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 2249977
    21  com.adobe.Photoshop           0x0000000100002444 0x100000000 + 9284
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib             0x00007fff840dbc0a kevent + 10
    1   libSystem.B.dylib             0x00007fff840ddadd _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib             0x00007fff840dd7b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib             0x00007fff840dd2de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib             0x00007fff840dcc08 _pthread_wqthread + 353
    5   libSystem.B.dylib             0x00007fff840dcaa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib             0x00007fff840fda6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84101881 _pthread_cond_wait + 1286
    2   MultiProcessor Support         0x000000011b11b19b boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 5483
    3   MultiProcessor Support         0x000000011b11b05c boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 5164
    4   MultiProcessor Support         0x000000011b13bf24 boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 140020
    5   libSystem.B.dylib             0x00007fff840fbfd6 _pthread_start + 331
    6   libSystem.B.dylib             0x00007fff840fbe89 thread_start + 13
    Thread 3:
    0   libSystem.B.dylib             0x00007fff840fda6a __semwait_signal + 10
    1   libSystem.B.dylib             0x00007fff84101881 _pthread_cond_wait + 1286
    2   MultiProcessor Support         0x000000011b11b19b boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 5483
    3   MultiProcessor Support         0x000000011b11b05c boost::exception_detail::copy_boost_exception(boost::exception*, boost::exception const*) + 5164

    I know i have a G5 in my profile but as i said in my first post of this thread im using my macbookpro dual 2.4GHz, 4GB RAM so the apogee has nothing to do with this computer.
    I ran rember last night and i woke up after 12 hours and it was still running.
    I put loops onto maximum and RAM allocation to maximum to get full testing.
    Any ideas on why its taking this long or is it normal?
    Cheers, Benji

  • How do I set Adobe Flash Player as the default program to open SWF files?

    Basic Overview
    I have this working fine at my home laptop, however I need this working for projects at school.
    Whenever I want to open an SWF file at home, I simply double click it and open it in Adobe Flash Player (Adobe Flash Player 10.0 r22) and I have no problems!
    However, when I am at school I have to run SWF files within Internet Explorer, Adobe Flash Player IS installed, but the SWF files are not opened in that directly, they are opened within Internet Explorer.
    At Home
    If I right click an SWF file at home and select "Open With" and then "Choose Default Program...", Adobe Flash Player is already there under the name 'Adobe Flash Player 10.0 r22', so I can simply select it as the default. (On my home laptop)
    At School
    At school if go to "Open With" and then "Choose Default Program...", Adobe Flash Player IS NOT there, only Internet Explorer and some other programs in the other programs box. (On my school laptop)
    Question
    How can I assign Adobe Flash Player as the default program for opening SWF files (on my school laptop)? If I select "Browse..." and go to C:\WINDOWS\System32\Macromed\Flash there is no file with a description of 'Adobe Flash Player 10.0 r22', is the file for the actual program located somewhere else or have I just no looked properly in the folder?
    I really need these files opening in Adobe Flash Player directly and not in Internet Explorer (I know you can set the view to 100% and have it sized correctly)
    Thanks you to everyone who helps!
    -Charlie! (Yes I know I don't need to write this in a forum)

    The standard Flash Player is a browser add-on, and not a standalone player.  So what actually opens when you open an SWF file at home?  Flash Player Projector?
    If so, you also need to download it at your school, from http://www.adobe.com/support/flashplayer/downloads.html, then do the file association.

  • Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Get Info' command in the Finder to ensure the file is unlocked and you have permission to access the file.

    I have this massage every time close ps cc
    Could not save Preferences because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the ‘Get Info’ command in the Finder to ensure the file is unlocked and you have permission to access the file. If the problem persists, save the document to a different file or duplicate it in the Finder.

    You may get better help in Photoshop General Discussion
    The Cloud forum is not about using individual programs
    The Cloud forum is about the Cloud as a delivery & install process
    If you will start at the Forums Index https://forums.adobe.com/welcome
    You will be able to select a forum for the specific Adobe product(s) you use
    Click the "down arrow" symbol on the right (where it says All communities) to open the drop down list and scroll
    If FINDER means Mac, read below (and try to give more information when asking a question)
    Mac 10.9.3 workaround https://forums.adobe.com/thread/1489922
    Enable Mac Root User https://forums.adobe.com/thread/1156604
    -more Root User http://forums.adobe.com/thread/879931
    -and more root user http://forums.adobe.com/thread/940869?tstart=0

  • Choosing Default Program for Opening .doc files

    Hi all,
    A couple of days ago I somehow managed to change my default program for opening .doc files to Pages and I would rather use Microsoft Word as the default. I dont know how I ended up changing this default, but I would like to know how to put the default back to MS Word.
    Thanks for any help!

    Choose any one of the files you want to change. Then, command-i to "Get Info". Open the disclosure triangle under "Open With" choose "Microsoft Word" then click on "Change All".
    -mj
    [email protected]

  • How do I change the default program that opens .acsm files?

    I am borrowing library eBooks to read on my Sony Reader.  I want to ensure that Adobe Digital Editions is the default program to open .acsm files, but am not sure how to do that.  Thanks for the help!

    Right (control) click on the .acsm file > select Open With > then select Adobe Digital Editions.
    Likewise you can select all of files in a folder with Edit > Select All > then Get Info and set them all to Open with: Adobe Digital Editions or whatever.
    Dennis

Maybe you are looking for

  • Bug in 10: Command 2 no longer works

    This is an annoying bug... I use command 2 for most video playback, as I find that playback at double resolution is a good viewing size on a large screen. Command 2 has worked for years, and it still works when viewing video from within iTunes. Using

  • MOTION BLUR & LIP SYNC PROBLEM

    This problem is with encoding in CS5. Using Encore to make a DVD I had to Transcode all my assets because of the "end of file" error on doing this I had 7 clips out of 18 with either motion blur (may be jitter) and audio out of sync with the video bu

  • MyRIO upgrade to Ni-myRIO13.1 may require chrome browser reset

    I upgraded the myRIO to the newest drivers myRIO13.1 and afterwards connecting to the web server was partially broken. Most sections worked, but the buttons for: Security Administration Web services management Web Server configurations ... were no lo

  • Need sample database  for Practise

    Hi Experts, I am learner looking for Sample data base to play. eMotors eStaff these are sample database used by training centers. Thanks

  • PC freezes when I try to sync movies

    WHen I connect my iPhone or iPad to my PC, it crashes when I press the iTunes movie tab. I have uninstalled/reinstalled iTunes and spent over an hour on the phone with apple support. Any ideas????