Program folders on desktop???

Just to show that im not just mad. I figured Id start anlther thread. This time I have a question about Macs or my Mac. The main thing is about things a person ,ight download from the internet. By that I mean mainly program files and stuff for programs. Specifically I like to use Firefox. So i dl'd it from the internet and installed it. I even added it to my applications folder so it will show up on the bar on the bottom. But everytime i open firefox I get a little icon on my desktop for something firefox related. And i cant get rid of it. What do I do with that stuff?

Sounds like you have a simple disk image volume which is how must things arrive for OS X off the internet.
Put the file that created the .dmg into a safe "Updates" folder somewhere safe in case you need to access or use the installer/program update again.
I direct downloads to a special folder. I think Leopard by default creates a downloads folder for you in your home account.
/Users/my_account/
Firefox lately has a problem of NOT respecting the designated "Downloads" location though.
Unmount/Eject the volume image.
Move the file if needed.
I would get David Pogue's "Mac OS X: The Missing Manual" as well as look in Help menu in programs, (Finder, Disk Utility, etc)
http://www.apple.com/support/macpro/
http://search.info.apple.com/
http://support.apple.com/kb/TS1388
http://books.slashdot.org/books/08/02/27/1551206.shtml

Similar Messages

  • Aim to process all files in folders on desktop to run through photoshop and save in multiple locations

    Aim to process all files in folders on desktop to run through photoshop and save in multiple locations
    Part one:-
    Gather information from desktop to get brand names and week numbers from the folders
    Excluding folders on desktop beginning with "2" or "Hot"
    Not sure about the list of folders
    but I have got this bit to work with
    set folderPath to "Hal 9000:Users:matthew:Desktop:DIVA_WK30_PSD" --<<this would be gained from the items on the desktop
    set {oldTID, my text item delimiters} to {my text item delimiters, ":"}
    set folderName to last text item of folderPath
    set my text item delimiters to "_WK"
    set FolderEndName to last text item of folderName
    set brandName to first text item of folderName
    set my text item delimiters to "_PSD"
    set weekNumber to first text item of FolderEndName
    set my text item delimiters to oldTID
    After running this I have enough information to create folders in multiple locations, (i need to know where they are so that photoshop can later save them in those multiple locations
    So I need the following folders created
    Locally
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber: brandName
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber: brandName: brandName + "_WK" + weekNumber + "_LR" --(Set path for Later)PathA
    Hal 9000:Users:matthew:Pictures:2011-2012:"WK" + weekNumber: brandName: brandName + "_WK" + weekNumber + "_HR"--(Set path for Later)PathB
    Network
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:"Week" + weekNumber
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:"Week" + weekNumber:brandName + "_WK" + weekNumber + "_LR"  --(Set path for Later)PathC
    Volumes:GEN:Website_Images --(no need to create folder just set path)PathD
    FTP (Still as a normal Volume) So like another Network
    Volumes:impulse:"Week" + weekNumber
    Volumes:impulse:"Week" + weekNumber:Brand
    Volumes:impulse:"Week" + weekNumber:Brand:brandName + "_WK" + weekNumber + "_LR"  --(Set path for Later)PathE
    Volumes:impulse:"Week" + weekNumber:Brand:brandName + "_WK" + weekNumber + "_HR"  --(Set path for Later)PathF
    I like to think that is end of Part 1
    Part 2
    Take the images  (PSD's) from those folders relevant to the Brand then possibly run more applescript that opens flattens and then saves it in the locations above.
    For example….
    An image in folder DIVA_WK30_PSD will then run an applescript in Photoshop, lets call it DivaProcessImages within this we then save to PathA, PathB, PathC, PathD, PathE, PathF the folder path of C should therefore look like this
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:Week30:DIVA_WK30_LR and of course save the image as original filename.
    Then from the next folder
    An image in folder Free_WK30_PSD will then run an applescript in Photoshop, lets call it FreeProcessImages within this we then save to PathA, PathB, PathC, PathD, PathE, PathF the folder path of C should therefore look like this
    Volumes:GEN:Brands:Zoom:Brands - Zoom:Upload Photos:2012:Week30:Free_WK30_LR and of course save the image as original filename.
    The photoshop applescript i'm hoping will be easier as it should be a clearer step by step process without any if's and but's
    Now for the coffee!!

    Hi,
    MattJayC wrote:
    Now to the other part, where each folder was created (and those that already existed) how do I set them as varibles?
    For example,
    set localBrandFolder_High_Res to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", localBrandFolder)
    This line was used to create more than one folder as it ran though the folders on the desktop. The next part is I will need to reference them to save files to them.
    You can use a records
    Examples
    if you want the path of localBrandFolder_High_Res  of "Diva", if "Diva" is the second folder of the Desktop
    You get the path with this : localBrandFolder_High_Res of record 2 of myRecords
    if you want the path of localWeekFolder  in the first folder of the Desktop
    You get the path with this : localWeekFolder of record 1 of myRecords
    Here is the script
    set myRecords to {}
    set dtF to paragraphs of (do shell script "ls -F ~/Desktop | grep '/' | cut -d'/' -f1")
    repeat with i from 1 to number of items in dtF
        set this_item to item i of dtF
        if this_item does not start with "2_" and this_item does not start with "Hot" then
            try
                set folderPath to this_item
                set {oldTID, my text item delimiters} to {my text item delimiters, ":"}
                set folderName to last text item of folderPath
                set my text item delimiters to "_WK"
                set FolderEndName to last text item of folderName
                set brandName to first text item of folderName
                set my text item delimiters to "_PSD"
                set weekNumber to first text item of FolderEndName
                set my text item delimiters to oldTID
            end try
            try
                set this_local_folder to "Hal 9000:Users:matthew:Pictures:2011-2012"
                set var1 to my getFolderPath("WK" & weekNumber, this_local_folder)
                set var2 to my getFolderPath(brandName, var1)
                set var3 to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", var2)
                set var4 to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", var2)
                --set up names to destination folders and create over Netwrok including an already exisiting folder
                set this_Network_folder to "DCKGEN:Brands:Zoom:Brand - Zoom:Upload Photos:2012:"
                set var5 to my getFolderPath("WK" & weekNumber, this_Network_folder)
                set var6 to my getFolderPath(brandName, var5)
                set var7 to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", var6)
                set website_images to "DCKGEN:Website_Images:"
                --set up names to destination folders and create over Netwrok for FTP collection (based on a mounted drive)
                set this_ftp_folder to "Impulse:"
                set var8 to my getFolderPath("Week" & weekNumber, this_ftp_folder)
                set var9 to my getFolderPath(brandName, var8)
                set var10 to my getFolderPath(brandName & "_WK" & weekNumber & "_LR", var9)
                set var11 to my getFolderPath(brandName & "_WK" & weekNumber & "_HR", var9)
                set end of myRecords to ¬
      {localWeekFolder:var1, localBrandFolder:var2, localBrandFolder_Low_Res:var3, localBrandFolder_High_Res:var4, networkWeekFolder:var5, networkBrandFolder:var6, networkBrandFolder_Low_Res:var7, ftpWeekFolder:var8, ftpBrandFolder:var9, ftpBrandFolder_Low_Res:var10, ftpBrandFolder_High_Res:var11}
            end try
        end if
    end repeat
    localBrandFolder_High_Res of record 2 of myRecords -- get full path of localBrandFolder_High_Res in the second folder of Desktop
    on getFolderPath(tName, folderPath)
        tell application "Finder" to tell folder folderPath
            if not (exists folder tName) then
                return (make new folder at it with properties {name:tName}) as string
            else
                return (folder tName) as string
            end if
        end tell
    end getFolderPath

  • My macbook screen doesn't work so I have connected it to the TV and now nothing works, I can't see the dock or the finder bar, no folders on desktop either. I don't know what to do!

    My macbook screen doesn't work so I have connected it to the TV and now nothing works, I can't see the dock or the finder bar, no folders on desktop either. I don't know what to do!

    Do you see anything on the TV?
    If you just see your desktop, then your MacBook is defaulting to extended display mode. Try pressing the Command + F1 keys to see if you get the menu bar and other icons.
    ~Lyssa

  • Can I save old mailbox folders from My Mac to other folders on desktop?

    Can I save old mailbox folders from My Mac to other folders on desktop, so that I can refer to them later if required?

    Yes you can

  • Cannot move files into folders on desktop

    Hi, I cannot move files into folders on desktop.  They won't go in when I grab them and drag them to a folder.

    Take these steps if the cursor changes from an arrow to a white "prohibited" symbol when you try to move an icon on the Desktop.
    Sometimes the problem may be solved just by logging out or restarting the computer. Try that first, if you haven't already done it. Otherwise, continue.
    Select the icon of your home folder (a house) in the sidebar of a Finder window and open it. The Desktop folder is one of the subfolders. Select it and open the Info window. In the General section of the window, the Kind will be either Folder  or something else, such as Anything.
    If the Kind is Folder, uncheck the box marked Locked. Close the Info window and test.
    If the Kind is not Folder, make sure the Locked box is not checked and that you have Read & Write privileges in the  Sharing & Permissions section. Then close the Info window and do as follows.
    Back up all data before continuing.
    Triple-click anywhere in the line below on this page to select it:
    xattr -d com.apple.FinderInfo Desktop
    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. You should get a new line ending in a dollar sign ($). Quit Terminal.
    Relaunch the Finder.
    If the problem is now resolved, and if you use iPhoto, continue.
    Quit iPhoto if it's running. Launch it while holding down the option key. It will prompt you to select a library. Choose the one you want to use (not the Desktop folder.)

  • HT3231 I tried to migrate information from MacBook Air to ...Pro and it seemed to have taken files from folders on desktop as none exist on Air now.  As to where these files are, I don't know.  It has also taken my pictures from iPhoto to unknown destinat

    I tried to migrate information from MacBook Air to ...Pro and it seemed to have taken files from folders on desktop as none exist on Air now.  As to where these files are, I don't know.  It has also taken my pictures from iPhoto to unknown destination. ??

    If you used migration assistant then it probably created a new Login user and placed the migrated files under it.
    Regards,
    Captfred

  • Macbook Air OSX 10.5.6 can't move docs or folders on desktop

    Cannot move docs or folders on desktop.  Cannot move items from trash to desktop.

    I have the same problem. Certain emails will not load, usually those with attachements. Simple emails will move to Mailboxes and load - but those with attachments will not.
    This goes on forever - tried repairing permissions many times. Installed mountain lion and still the same problem.

  • Why are there two program folders

    when I opened my new Windows 7 PC there were 2 program folders
    1) c:/program
    2) c:/program (x86)
    why and does it make any difference where I store programs as I install them

    Hi,
    You must have a 64bit Windows installation.  Programs that can run in a 64bit environment will install to your Programs files folder, whereas programs that require a 32 bit environment will be installed in your Programs files (X86) and use WOW64 ( Windows 32bit on Windows 64bit ) in order to run.  You can read more regarding this feature on the link below.
    WOW64
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • I can't move downloads onto my desktop nor can I move folders around desktop. Have been having trouble with iPhoto also. "Terminal" has shown up on my dock for the first time. I tried repairing using disk utilities.

    I can't move downloads onto my desktop nor can I move folders around desktop. Have been having trouble with iPhoto also. "Terminal" has shown up on my dock for the first time. I tried repairing using disk utilities.Please Help!

    I have the same issue-was there ever a solution that worked? Thanks.

  • I want to be able to execute a swing program from my  desktop

    i want to be able to execute a swing program from my desktop but i dont know how to go about it. Till now to run the programs i used command prompt. please can you guys help me cross this huddle. I need step by step solution to do this

    In Windows, you associate a .jar file with javaw. YOu can do this with a right-click on the system icon, if I recall correctly.
    Another option is to wrap the jar file in an executable wrapper so it looks like an .exe. I have used JSmooth to good effect for this.
    Good luck. It is only modestly tricky

  • If I own a previous lightroom program installed in my desktop may I open the same program in my desktop?

    If I own a previous lightroom program installed in my desktop may I open the same program in my desktop?

    Hi Sailor,
    It is pretty amazing you got a new version without even knowing it.
    In System Preferences > App Store you can turn off the automatic updates by unchecking "Install app updates" as I've done here:
    If you're using Numbers across platforms and displaying dynamic output on the iPad or doing data entry there, you'll be *much* happier with Numbers 3.0 than the old version. If you're doing a lot of traditional printing of heavily formatted documents, the old version is much better.  For most day-to-day uses in between it's a toss-up.  The new version, despite its flaws, is a powerful application that can enhance productivity in ways the old version can't.
    For more on the differences between the two, see the features gained, features lost, and workarounds threads, plus Apple's support document on features to be reintroduced in the coming months .
    SG

  • Folders on Desktop - Bug or Feature???

    A lot of times I will make a folder on the corner of my desktop that is exposed behind programs, but since upgrading to Leopard, everytime I make a folder, it is sucked behind the windows, requiring me to hide my programs to view the desktop and re-drag it to the side of the screen.
    I don't have any auto arrange on and can't figure out why it is doing this. Any suggestions?

    I had been noticing this "slide" of new folders also. Used to be you click on the Desktop, select New Folder from the Contextual Menu, and the new folder would pop into existence at the point you clicked, unless you had some auto arrange thing specified. So I just now tried clicking at random points all over the Desktop and create a new folder. It always always slid away from point I had click to some other point. How far it slid and in which direction appears rather random, although there does seem to be a strong tendency to slide to the left and slightly up, moving about 30 to 40 pixels away from where you clicked. Indeed, if you watch closely you'll see that its initial position is where you click, and then it moves away. Seems to be a bug, and it seems to be related to the newly introduced feature (a most welcome one) of being able to adjust the grid spacing in icon view. When I brought up "Show View Options" and moved the grid slider from the default largest to smallest, and then created new folders they still slid away from the origin point, but they slid away a much smaller distance--if the average slide at the widest grid is given as a 3, the average slide at the smallest grid would be a 1.
    Francine--who obviously has too much time on her hands
    Francine
    Schwieder

  • CD Burn folders on Desktop won't trash (Error code -61)

    Hello,
    I have burned three CDs and now I have three folders on my desktop with the Burn icon on them. When I try to trash them, I get the following message:
    Sorry, the operation could not be completed because an unexpected error occurred (Error code -61).
    I can't even move them to another folder so they won't take up screen real estate.
    Any suggestions?
    Take care,
    Hector

    I've been having this same problem. Been driving me nuts! Just figured it out though... Choose the Burn Folder --> Get info --> Click the "Locked" box. --> Then unclick the "Locked" box --> close the Get Info window and trash your burn folder.
    So basically what you're doing is locking, then unlocking the folder, then trashing it.
    Hope this works for you, I've just tried it on two different computers and it worked.

  • Items not appearing in folders on Desktop

    Hi all, I hope someone ran into this before, or knows why finder does this and maybe I can solve this really irritating bug finally.
    My problem is the following:
    a) when I am extracting from archives (i.e. Stuffit or just plain zip files)
    b) when someone copies a folder with files onto my Desktop
    the contents of the folder(s) are not or partially visible.
    Just a recent example, when copying over a folder with 56 pictures (approx. 580 MB) from another mac, via afp, to my desktop, the copy finishes, I open the folder, and there are only 26 items. If I run Terminal, do an ls -la, all the files are there, no differences in permissions. If there is a nested folder, which is not visible, I can simply go into it via the Go > Go to folder... menu item, entering the name of the folder.
    It is really random what is visible, sometimes the folders are completely empty.
    I have both repaired and checked permissions manually on the Desktop, they seem fine (to me). Also, dragging my archives to Mac HD and extracting them there works just fine.
    Logging out and logging back or restarting the computer makes the files visible, as normal.
    The problem does not affect me alone, I spoke with at least two people, who have the same problem, with no apparent solution. Also, although I run 10.4.6, the problem dates back to previous versions.
    Anybody got any hints how to solve this one, or what could be the cause?
    I'd really appreciate the help.
      Mac OS X (10.4.6)  

    I am not aware of a solution, or even an explanation for this particular Finder strangeness. However, I know many of the afflicted respond to the simple treatment of creating a new folder inside the one the Finder is refusing to update, or even simply drag a file into it. The folder seems to come out of the Finder's temporary blind spot, whereupon Finder updates the contents.
    Francine
    Francine
    Schwieder

  • Renaming files/folders on desktop: weird.

    Hi
    Since I have OSX Lion, and I want to rename files/folders on my desktop nothing happens.
    Or at least not what is suppose to happen. Pressing enter in a finder window works perfect, like always.
    But when I hit enter on a file or folder on my desktop it go's blank.
    I can't see what i'm doing, but the name will change if I typ a new one. Quit confusing and realy difficult to work with. Any idea's how to fix this?

    This has been driving me nuts but I accidentally found the cause...but not the solution.  It is a Lion thing as spaces did not have this issue.
    I am assuming you are using multiple screens (mission control, formerly spaces).  If you go to screen 1 and try to rename the file you CAN see the name as you rename it.  If you go to any other screen and try to rename it you get the blank space. 
    In my case I never rename files on my main screen.  I always rename them on which ever screen I am working (word is screen 5, so docx saved to the desktop are renamed on screen 5).

Maybe you are looking for