Problems with Spaces and System Preferences

Hello all. I previously had setup my spaces so that when I opened certain apps, they would open in specific spaces (ex. Safari opened in upper left space, system preferences opened in lower right space etc.). I had spaces setup so that there were 9 spaces. Now somehow my spaces got reset so that I have only 4. Whenever I open system preferences, or even open spaces preferences to change it, it opens, but does not appear, and when I hit the spaces button, there it is, overlapping my spaces, but I cannot click on it to change the settings, only choose a space to go to.
Heres what it looks like when i hit the spaces button:
http://img408.imageshack.us/img408/5122/picture1bw3.png

Hey guys i found a fix to this but its basically using System preferences blind, and toggling on and off the radio buttons for Expose and Spaces.
So to really understand my jumble of words to make you understand my weird train of thought. Its The Master & the Grasshopper Lesson on _'Believing without Seeing.'_
Young Apple Seed (aka Grasshopper), Just because one can not see what one is doing, does not mean one is doing nothing. This just means that the Mime is miming a mime action to a blind person.
So if you wish to not be the blind mad and the mime, do as it is written, and as you think. For one who goes down a path they choose they will sure be the Mime. And if you are, then you need an Mime EGO check.
_TO GET WHAT YOU CAN'T SEE_
1. If you don't already have SP (System Preferences) running then you will need to start the Application named SP.
2. When in SP, click on View | *Expose and Spaces*
+(If your here and saying how the bleep do I do this step. Then you need to Bleepity make sure that right next to the Apple Icon in the top left corner reads+ *System Preferences*, +Mr/Mrs/Ms Mime.)+
3. Press Tab +(ONE TIME)+
4. Press *Right --> Arrow* +(ONE TIME)+
*5. Press ⌘L +(ONE TIME)+
*6. Press ⌘[ +(ONE TIME)+
7. Press Tab
8. Press Tab
9. Press *Space Bar*
+(Now if you were doing each step while reading it on the screen then right after you did that last step like magic it appears.)+ The space bar toggled Enable or Disable Check box.
* These steps really should not be here but I noticed a bug that would make my steps not work correctly if these were not done. Usually when you press tab once in a 2 part option menu for SP its tabbed. And usually when you press the arrow key to go to the next tab, usually the focus is still on the tab for the next tab. But it doesn't and that isn't only on my system, its on many others i tried it on. So you Bug mashers or fixers this has been duped on several other systems that range from non-Intel, PowerMac, PowerPC, iMac, even non apple macs. but focus disappears and even if you pressed tab or the arrow keys nothing would happen and trust me you would be doing my steps over and over and then post something either on my profile that i'm a bleepity bleep bleep or something positive. But i'd like the positive comments, but hey if you want to leave me bleepity bleep bleep bleep bleep bleeps? Then i have one thing to say to you "BLEEP you!!"

Similar Messages

  • [SOLVED] problem with spaces and ls command in bash script

    I am going mad with a bash script I am trying to finish. The ls command is driving me mad with spaces in path names. This is the portion of my script that is giving me trouble:
    HOMEDIR="/home/panos/Web Site"
    for file in $(find "$HOMEDIR" -type f)
    do
    if [ "$(dateDiff -d $(ls -lh "$file" | awk '{ print $6 }') "$(date +%F)")" -gt 30 ];
    then echo -e "File $file is $(dateDiff -d $(ls -lh "$file" | awk '{ print $6 }') "$(date +%F)") old\r" >> /home/panos/scripts/temp;
    fi
    done
    The dateDiff() function is defined earlier and the script works fine when I change the HOMEDIR variable to a path where there are no spaces in directory and file names. I have isolated the problem to the ls command, so a simpler code sample that also doesn't work correctly with path names with spaces is this:
    #!/bin/bash
    HOMEDIR="/home/panos/test dir"
    for file in $(find "$HOMEDIR" -type f)
    do
    ls -lh "$file"
    done
    TIA
    Last edited by panosk (2009-11-08 21:55:31)

    oops, brain fart. *flushes with embarrassment*
    -- Edit --
    BTW, for this kind of thing, I usually do something like:
    find "$HOMEDIR" -type f | while read file ; do something with "$file" ; done
    Or put those in an array:
    IFS=$'\n' ; files=($(find "$HOMEDIR" -type f)) ; unset IFS
    for file in "${files[@]}" ; do something with "$file" ; done
    The later method is useful when elements of "${files[@]}" will be used multiple times across the script.
    Last edited by lolilolicon (2009-11-09 08:13:07)

  • Problems with Mobile Me System Preferences after installing Snow Leopard

    I installed Snow Leopard yesterday, and noticed that my calendar was no longer syncing between my mac and my iphone. I opened the system preferences/mobile me pane and my .mac account came up, but when I tried to hit the "sync" pane it just froze. It did this repeatedly. I trashed the system preferences file and tried again, with the same result.
    Any ideas? I'd really like my calendars to continue syncing across devices.

    I had same issue, this cured it for me...
    - Open MobileMe in System Preferences
    - Click Advanced
    - Click Reset Sync Data
    - Select Calendar from drop down menu/pop up list
    - (In my case I changed the arrow, to copy all calendar events from my mac to mobileme)
    This resets the data in mobile me.
    After this the sync function worked as normal & my iPhone syncing was ok as well...
    Hope this helps

  • Problem with date and time preference

    hi there,
    i set my date and time and the time support yesterday and then i click the lock button to prevent further chance and last night i shut down my iMac, open it again in the morning the lock open back up and the timezone support change.
    i redo that again and restart my iMac the same thing happen. is this a problem with my software or everyone have this problem?
    any idea what should i do?
    thanks in advance
    regards AL

    Having the same problem, & am running Parallels (which I haven't used for some time) not boot camp. I tick the box labeled "Set time automatically" & lock the "click the lock to make changes". When I reboot, the Lock is unlocked and the "set time...." is unticked. Any ideas. Cheers.

  • Problem with space and toURI()

    Hi,
    My program is working #1 when I create a MediaLocator like that:
    mediaLocator = new MediaLocator(file.toURL());
    But I know that toURL is depreciated so I changed it to
    mediaLocator = new MediaLocator(file.toURI().toURL());
    And now, when my path contain spaces, it create a folder with %20 instead of space...
    For exemple:
    c:\Documents%20and%20Settings
    instead of
    c:\Documents and Settings
    Thanks for help!

    This works for me - with my videos in
    C:\Workspace\JMF\src\\jmf\My videos
         private void playFile(File f) throws Exception{
            System.out.println("file - '" + f.getPath()+ "'");
            MediaLocator mL= new MediaLocator("file:" + f.getCanonicalPath());
            DataSource dS = Manager.createDataSource(mL);
            Processor proc = Manager.createProcessor(dS);
            proc.addControllerListener(this);
            proc.configure();
         }

  • Problems with FCP and System 10.5

    I have found an issue that has me pulling at my hair, and I don't have that much to pull.
    I repaired permissions and experienced quite a wait and it seems as though it is doing nothing but it is working so don't let that bother you I just waited it out and all was well. My big problem, after installing FCP Studio 2, it does not read my FCP projects that I had saved.
    I get an error message saying: File Error: Wrong Type.
    Now here is a strange thing. One and only one of my former projects will open in FCP. I really don't remember, but I believe it was the only one I made after the most recent ProApps update from Apple (Believe it was Pro Application Support 4.0.2) anyway it is the one that updated my system when I ran Software Update after installing Studio and all my other Apple programs.
    I have no idea if this would cause the problem as the other projects were Not made with this latest update installed but I can't believe that it would.
    Any ideas? I really need my previous projects back or I will be spending a great deal of time trying to re-create them. (that is not making me a happy camper)
    Thanks,
    Michael
    Message was edited by: Michael Powell3

    I may have spoken too soon. I have a mirror image of my previous system that is bootable and I thought I could boot from that disk, open each project and save it out to the new 10.5 system disk.
    I did boot back into 10.4 and brought up FCP but I got the same response from the program that I did in the new system:
    File Error:Wrong Type
    Now I am at a loss...anyone have any idea and could it be the Pro Application Support 4.0.2 that I had installed?
    Help...Please
    Thanks,
    Michael

  • Problems with freemidi and system 9.2.2

    I have a working set up of a program called Mosaic (music notation system by MOTU now orphaned) that uses 9.2.2  and no higher. It will not work within the
    so-called Classic in OSX either.  The program is functioning fine on my Blue/White G3 running 9.2.2.  I'm using FreeMidi with MOTU Midi Express interface, Roland Sound Canvas SC55 as my sound module.
    Now the problem has come since I decided to move my Mosaic Stuff to my unused G4.  I took the machine to a tech who inturn loaded the 9.2.2 System that
    I needed.  The I loaded the appropriate program (Mosaic), FreeMidi, Driver for the MOTU Midi Express, driver for the Sound Canvas 55.
    however, it does not work.  There is no "viable connection? between the Midi Express and my SC-55 and Mosaic.  The controller, also, has no apparent connection with the program.  It will not play previously recorded materiaol from Mosaic, either.  My midi setup seems the same as previously; however,
    no life form exists.
    Can anyone help me?  I know this goes back several years; however, there has got to be some Midi guys that have or had a 9.2.2 working setup.
    Any suggestions?  I have sunk many hours . . . years, verily, . . in this program.  And I have hundres of projects that use Mosaic and NOTHING
    else.

    I gave up on MOTU stuff due to their lack of support (legacy downloads at a minimum). Instead I've been using OMS and its assorted software collection.
    Does Mosaic work with OMS? Lots of apps will work with both.
    But in general I've had serious grief using G4s with anything MIDI. I tried Pro Tools Audiomedia card, Audiophile 2496, USB and stealth serial adapter - all of whch failed for various reasons.
    I finally got a stable MIDI environment by using the Firewire port and a Tascam interface. It's taken 3 years, many $$$ and lots of frustration. But I made it work.
    Gary

  • Mail and system preferences keep crashing

    I just bought this new computer. I migrated my old computer (MacBook Pro (mid-2009) with OS 10.6.8).
    Now I"m having problems with Mail and System Preferences crashing (this was also happening some between iCal and Mail on the old computer).
    Any ideas on how to fix?

    Launch the Console 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. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left.
    Enter the name of the crashed application or process in the Filter text field. Post the messages from the time of the last crash, if any — the text, please, not a screenshot. 
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into a message.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in the Console window, look under User Diagnostic Reports for crash reports related to the process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

  • Problems with iCal, Adress Book, Pages and System Preferences

    Hi,
    No less. Two days ago, I noticed that iCal crashed immediately after I open it, but as I was in an hurry, didn't take attention to that. After that, I forgot completely the issue. Till today, when I discovered that Pages opens a file but immediately after that it don't respond to any command and "Force Quit" report the program as "Not Responding". The same happens with Text Edit. I investigated a little and discovered that Adress Book and System Preferences also crashes immdiately when opens. In the last case, it only happens with certain options: for instance, iCloud, Mails, Contacts & Calendars. A little more research showed me that this only happens within my administrator account (my wife and kid accounts don't have from this problem). This is also the account that I use to synchronize with my Ipad and Iphone. On the other hand, my MacBook with the same OS and almost the same programs works fine.
    Any ideas about what can be the cause of this issue?
    Thanks!

    Hi,
    No less. Two days ago, I noticed that iCal crashed immediately after I open it, but as I was in an hurry, didn't take attention to that. After that, I forgot completely the issue. Till today, when I discovered that Pages opens a file but immediately after that it don't respond to any command and "Force Quit" report the program as "Not Responding". The same happens with Text Edit. I investigated a little and discovered that Adress Book and System Preferences also crashes immdiately when opens. In the last case, it only happens with certain options: for instance, iCloud, Mails, Contacts & Calendars. A little more research showed me that this only happens within my administrator account (my wife and kid accounts don't have from this problem). This is also the account that I use to synchronize with my Ipad and Iphone. On the other hand, my MacBook with the same OS and almost the same programs works fine.
    Any ideas about what can be the cause of this issue?
    Thanks!

  • Problem with DMGs and error: "No Mountable File Systems"

    Problem with DMGs and error: "No Mountable File Systems"
    The files are not corrupt. The problem is occurring with all DMGs that are apparently formatted in MS-DOS FAT16. No the file will not mount with Disk utility or any other disk mounter programs I have found.
    This is now the second time this occurred and now effects my MBP and my iMac. First time i spent days with Apple support and the only solution was ultimately back up the data, reformat the HD, start over from scratch and reload everything. That lasted about a month before the problem resurfaced and is now an issue on both iMac and MBP.
    I tried to identify all the programs I installed immediately before the error, as I am convinced it is the result of a software conflict.
    Recent programs includes:
    1) upgrading from Parallels 5.5 to 6.0 on both machines.
    2) using an HP secure II usb drive and setting up a secure disk.
    3) installing new itunes 10
    4) new update to Flip For Mac.
    The files affected are downloaded dmgs, including personal brain and google earth, both which are formatted in FAT16.
    Any help or thoughts? Apple has now spent hours trying and they say i now have to reformat and wipe and start over. That is unacceptable and based on pasted experience the problem is likely to repeat itself. having to wipe and rebuild a HD ever month is not an solution. i need to fid the root problem.
    In the meantime, anyone got a real solution on how to extract the data for a DMG using a different method?
    Message was edited by: remaia

    Where you able to find the solution, i am having the same problem, all was fine till i install some programs only same one i saw did we both did was flip4mac i uninstalled it but the problem is still there, i also restored and erased the hardrive but im not up to doing that all over again. If you found anything out let me know i would greatly appreciate it

  • Problem with Send and Receive Emal In SAP System

    Hi gurus!
    I have a following quote:
    Dear !
    I have a problem with send and receive email in SAP system following :
    I want to test send and receive email in local network at my company. I
    had two server
    Server 1 : I setup Exchange Mail Server 2007 with domain controller is
    fes.com
    Server 2 : I setup SAP ERP ECC 6.0
    On Server 1 : I created 2 account ( u1Afes.com and u2Afes.com ) and then I tested send and receive email between u1 and u2 in local network through Microsoft Outlook 2007 -> OK
    and then
    On Server 2: I had configured send and receive email on SAP system
    through tcode SBWP, SCOT and SOST as Note 455140 - "Configuration of
    e-mail, fax, paging or SMS using SMTP"
    for example :
    I logged in SAP system with user Basis01 (with email u1Afes.com ) -> then,using tcode SBWP -> new message -> send to u2Afes.com with Internet Mail type and then status message with green light -> sending ok
    and then I have used Microsoft Outlook 2007, I logged with account u2 ->check email -> Ok. I saw message which send from u1
    Finally, My problem is how can receive mail in SAP system without using Microsoft Outlook
    For example:
    Login system SAP with Basis01 account (with  u1Afes.com ) -> tcode SBWP ->New Message -> send to u2Afes.com
    and then
    Login system SAP with Basis02 account (with u2Afes.com ) -> tcode ??? ->
    To receive email from Basis01 (with u1Afes.com )
    Please help me now
    Thanks
    I replace "@" with "A" because of banning email of this forum.
    This quote is about sending email in local network. And we can't receive any email from the outside email address. Addition if I wanna send email to internal email in Internet (we've just tried with email address in local network) What should I config in SAP and Exchange ?
    By the way, Is SAP Server IP added to Relay Agent for sending or receiving mail ?
    Regards
    An NLP
    Edited by: An NLP on Apr 6, 2010 7:03 PM

    Hi,
    This problem is a classic problem of mail routing via Exchange. Exchange like most mail servers use the domain part of the email address as a means to route mails. So I will make an assumption that your main company mail addrss is "User @ fes.com".
    So when you send a mail to the "User @ fes.com mail" address the mail is delivered to your Outlook mail address as this is the default route for company.
    (Q) So how do you get your Exchange server to relay the mail into the sending SAP system?
    (A) The easiest way would be to setup and unique mail domain for your SAP system. I always recommend "user @ client.sid.company.com" which in your case would be "u1 @ 100.PRD.fes.com". You can then instruct Exchange to send any emails addressed to 100.PRD.fes.com domain to your SAP system. Also using this format of address you can configure multiple mail connections into multiple SAP systems.
    (A) Another answer would be to enter the "Full" email address (LOcal and Domain part of address) into the routing rule for Exchange e.g. "U1 @ fes.com" so that all emails addressed to this user will be delivered into SAP. However this method requires a lot of Admin as you will have to update Exchange with ALL email address that need to receive emails. Also if your corporate mail address is "U1 @ fes.com" then all mails will be forwarded to SAP.
    I would definitely NOT recommend this method but the decision is up to you.
    P.S. The IP address of the SAP system is entered into the mail header of the email. This is standard practice in SMTP relay. You can suppress this header in Exchange
    Hope this helps
    Michael

  • Cant find expose and spaces in system preferences

    I cant seem ti find "expose and spaces" in system preferences.  Can anybody help please?

    Welcome to the Apple Support Community!
    If you upgraded from Snow Lepoard OS 10.6.x that had Exposé and Space, then those two have been integrated into Mission Control in Lion OS 10.7.x. You can learn more in the Apple KB article Mac 101: Mission Control. Mission Control is in System Preferences. Another source of info about Mission Control, Exposé and Spaces is from the Help menu in the Finder. Just type any one of those elements in the search box and you should get a few articles that are connected to each other.
    HTH

  • I'm having problems with FlashPlayerPlugin and plugin-container. They keep starting up and bogging down the system. This has been a recent occurrance. I've made sure that I have the latest version. I notice the problem when I am opening some applicatio, a

    I'm having problems with FlashPlayerPlugin and plugin-container. They keep starting up and bogging down the system. This has been a recent occurrance. I've made sure that I have the latest version. I notice the problem when I am opening some applicatio, and it freezes. If I go to Task Manager, I can see the two Adobe apps sucking up CPU cycles. If I end the processes, then the other apps continue. Today, I uninstalled FlashPlayerPluginqand plugin-container. All day since I have had no freezing of an app. What should I do to correct the problem?

    Here's an explanation of what those processes are. 
    Inside Flash Player Protected Mode for Firefox
    I'm curious about what you did to uninstall just those.

  • Just installed OSX Mavericks.Bluetooth disappeared from menu bar and system preferences. I have a magic mouse and my IMac no long recognizes it as such, nor can I scroll with it. What's wrong?

    Just installed OSX Mavericks. Bluetooth disappeared from menu bar and system preferences panel. I use a Magic Mouse but my iMac no longer recognizes it as such, and I can no longer use it to scroll screen. What happened?

    Since Mavricks installed: My Spotlight icon disappears from the menu bar, but the space stays there. If I click on the blank space where the
    spotlight icon is supposed to be - the spotlight menu opens. So, for me, the icon is there, it works except that it is invisible at times. IF I do a re-start it is there. If I let the computer set, sleep or other wise stay on for days, the icon will hide and re-appear at random.

  • Hi i upgrade from lion to mountain lion to day on my mini mac,Since the upgrade i am getting no sound through my HDMI cable which was working fine on lion Checked the midi audio settings and system preferences to out on HDMi nothing no sound whats so ever

    Hi i upgraded from lion to mountain lion to day on my mini mac,Since the upgrade i am no longer getting sound through my HDMI cable which was working fine on lion Checked the midi audio settings and system preferences to out on HDMi nothing no sound whats so ever.Any one any ideas?
    I use a samsung TV for my monitor via HDMI.Tried all the system Audi setting nothing .Head phone and internal speakers are fine.

    Similar issue; Audio was working fine on Lion, now not on Mountain Lion. Have a Macbook Pro early 2011 with AMD Radeon HD 6750M, connected by thunderbolt through a Lacie LBD to a mini-displayport to HDMI adapter (n.b. same problem when not going through the LBD) to a Pioneer VSX 521 AV receiver. For me when I go into audio Midi settings all the volume sliders for the displayport device are greyed out and at zero. But when I click 'configure speakers', it's able to send out the test signals to each speaker. Part of the problem could be that I'm not getting the option to put out 6channel sound, only 2 or 8 channel. Since my system is Dolby 5.1, and I only have 6 speakers, I would have expected the 6ch option to be available. But I imagine there's more to it than that. Elsewhere someone has suggested playing with Remote Interactive over HD on an Onkyo device; I'll see if there's something similar on the Pioneer that can be changed. Any other suggestions welcome.

Maybe you are looking for

  • Sent by mail button in form

    I have create a form in Acrobat 8 and placed a button 'sent by mail'. When a user fill in the pdf-form and press the button 'sent by mail' The email application will be launched. The attachement is an .xml file. Why is that? and is it possible to sen

  • Preview issue in ATG-Endeca integration case of CRS at Endeca side

    I'm using ATG 10.1.2 and Endeca with Experiece Manager 3.1.1, both are the most current version coming out at the begining of this new year 2013. I followed the documents and deployed the Commerce Reference Store (Known as CRS) with option of Endeca

  • Question about Standby modes (S1 or S3)

    Hi all, Can somebody explain what S1/POS and S3/STR standby modes are? my system is set at S1/POS and when I press standby everything shuts off except for my case fans and power supply fan. If i set it to S3 will that turn off everything like I want

  • Detail of Cost elements Settled to VV

    Hi experts How can see the details of cost elements that has been settled to a specific Value Filed?. I made assessment cycle and defined the cost elemnts groups and Value Fields, but I need to cross check the amount assessed to COPA with that in Cos

  • Fine solid black border for table-cell

    Hi! I'm facing the following problem. I'd like to have a tableview where cells have a fine! black (not grey) border. The result should look like a typical Excel-Spreadsheet. When entering this in the css Stylesheet: .table-view {     -fx-background-c