Blue outline of unknown orgin when the 4 finger swipe is used...

When you use the 4 Finger swipe down (display all windows) on my macbook (running snow leopard) i get a blue box and i can't figure out what it is or how to get rid of it
it's usually when i'm online ( i use google chrome)
I would like to get rid of it tho
Here is a link to a screenshot that i uploaded so you can see what i'm talking about
http://i971.photobucket.com/albums/ae199/tschulze/MacBook%20Help/Screenshot2010- 01-05at113523AM.png
thanks for the help

Command + Tab is what you are after i think

Similar Messages

  • Hi BC, I have an issue with BC. When the shopping cart is used it takes stock out of inventory and h

    Hi BC,
    I have an issue with BC. When the shopping cart is used it takes stock out of inventory and holds it, regardless of whether or not a customer proceeds to purchase. OK.
    To make matters worse, the stock is only cleared from the shopping cart when the customer closes the browser - not when they close the shopping window.
    Now lets say a customer doesn't close their browser for a month - it happens! .. when their stock is finally returned it may throw out our stock levels that have in the meanwhile been adjusted. So their stock will be added on top of an accurate stock take, putting stock in that isnt really available.
    This is causing us mayhem.
    We have not yet seen if stock is actually returned at all. In the test we did today where we filled a shopping cart then closed the browser without making a purchase, the stock was not returned immediately. So we dont even know when it will be returned - thats IF a customer actually closes their browser. Any solutions out there?
    Jo

    Hi there,
    The way stock is managed in this situation is desirable for many in that case otherwise shopping on a site and adding to cart would not be viable or use friendly.
    What you mention about not closing a browser though is a case that is not true. IF you go into the shop settings in the admin you can see the cart restore timer which is by default 24 hours but you can change this to as low as 1 hour if you wish.

  • Is the "deadline" variable also set when the Due transition is used ?

    Hi,
    I needed to understand if the 'deadline' variable is also set when the due transition is used. The reason I am asking is because of the following scenario that we saw:
    1. There is a Due transition form an interactive activity to an automatic
    2. The automatic had a Syntax error (typo) in a SQL statement
    3. When the instance reached this automatic... the instance aborted... [process level Exception level handling is not present :( ]
    My first thought was that there was an instanceExpiration exception, but was not certain.
    An leads would be nice...

    1. The exception is seen in the Engine Logs, but the strange thing is that sometimes the Expection is caught within the localized exception block and still manages to bubble up to the process level exception handler...If you have a 'throw ex' in your catch block its supposed to propagate up to the process level... (there is a setting to prevent this...)
    2. I tried adding the throws clause in the catch block to force it to always bubble up to the process level exception handle, this does not always happenThis sounds strange, that it doesn't always happen? Right click on the project, and go to Preferences, in the Processes category, set the Exception Handling to 'Propagate', that should send the error the parent process.
    3. I tried removing the localized catch blocks to always be caught by the process level handler... this also does not happen consistently... The exception is seen in the engine log and the instance goes on its merry wayIf the exception gets caught, (without an additional 'throw') the instance will continue...
    HTH,
    -Kevin

  • What type of Data target is used when the safety interval is used?

    Hi ,
    what type of Data target is used when the safety interval is used in generic delta in datasource?DSO or cube  or cube?
    Pls explain me ?
    Thanks,
    Nimai

    It's up to your reporting requirement to go for dso or cube..
    I prefer to having staging with DSO and then further reporting on Cube ..
    It's always easier to manage when you have any changes to the cube .. you need not to extract data from R/3 .. if you have dso you can extract directly to cube
    Another thing is -for any reason some of your records got corrupted so you can have full loads to dso which has the overwrite functionality...  and sends delta records to cube. even in cube you can do selective deletion but we have to very careful to avoid double records in next loads
    Edited by: Srinivas on Jul 29, 2010 8:23 PM

  • [svn:fx-trunk] 11593: Advanced CSS fix - descendant selectors should search for arbitrary ancestors including when the universal selector is used .

    Revision: 11593
    Author:   [email protected]
    Date:     2009-11-09 15:20:36 -0800 (Mon, 09 Nov 2009)
    Log Message:
    Advanced CSS fix - descendant selectors should search for arbitrary ancestors including when the universal selector is used.
    QE notes: Please add test cases for arbitrary ancestor depth that involve using the universal * selector. Thanks for the additional testing on this patch too!
    Doc notes: N/A
    Bugs:
    SDK-23213 - descendent selectors can't catch components more than one level down
    Reviewer: Corey
    Tests run: Checkintests, test case
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-23213
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/styles/CSSSelector.as

    Welcome guy -
    Unless you are using Spry menus as a learning experience, you should move forward to a menus system that will display properly on the millions of portable devices that won't work with Spry which was deprecated 2 years ago.
    Many are using JQuery menus or pure HTML/CSS menus.
    If you wish to continue your Spry for learning experience, we'll be glad to assist; please let us know.
    By the way, your submenus are not showing because you need to add the red value to this rule in your vertical CSS
    ul.MenuBarVertical ul.MenuBarSubmenuVisible{
        width: 220px;
        left: 180px;

  • Remove key when the HashMap still is  used

    I try to remove some value when the HashMap still is use, but I get compile error:
    java.util.ConcurrentModificationException
         at java.util.HashMap$HashIterator.next(HashMap.java:749)
         at PoliceDatabase.listUnlawfulDrivers(PoliceDatabase.java:228)
    part of code as follow:
    do {
    while (de.hasNext()) {
    p=(Driver)de.next();
    maxt=((ArrayList)tempInfractions.get(p)).size();
    if (maxt==0) {tempInfractions.remove(p);}
    else if (maxt>max) {
    max=maxt;p1=p;
    atemp1.addAll((ArrayList)tempInfractions.get(p));}
    newInfractions.put(p1,atemp1);
    atemp1.clear();
    tempInfractions.remove(p1);     } while (tempInfractions.isEmpty());
    what should I do?
    Thank you first!!

    I try to remove some value when the HashMap still is
    use, but I get compile error:That's a run time error, not a compiler error.
    >
    java.util.ConcurrentModificationException
    at
    java.util.HashMap$HashIterator.next(HashMap.java:749)
    at
    PoliceDatabase.listUnlawfulDrivers(PoliceDatabase.java:
    28)
    part of code as follow:
    do {
    while (de.hasNext()) {
    p=(Driver)de.next();
    maxt=((ArrayList)tempInfractions.get(p)).size();
    if (maxt==0) {tempInfractions.remove(p);}I assume "de" is some kind of iterator. You'll have to remove "p" via the iterator so it will know that element is gone. Look in the API docs for whichever iterator you're using for a remove() method.

  • Fix for "Unknown Device" when the iPod is connected

    After a few long nights, a few headaches, hours and hours of reading, thinking and many toasted sandwiches, I finally found the problem to my iPod not loading. Putting together information I had read here and at many other sites I had a brainwave... and sure enough it worked. I figure this may be helpful to many other iPod users, so... here I am posting my solution. Note though, this wont help all users, but I know I wasn’t alone with this issue, and this just might help someone.
    I’ll list the issue I was having (this may help other people identify their issue to mine) was that the iPod failed to work on windows, and threw a fit when plugged in. Windows did too, iTunes would lock up and the iPod software failed to recognise that an iPod was connected. The iPod had worked on an older PCs before, but it failed to work on my new homebuilt PC. When I first connected the iPod it began to work, transferring and updating.. but then it unexpectedly disconnected the iPod.. and mentioned something to do with an I/O error, the iPod had to be disconnected and it also mentioned something to do with a timeout error and dataloss (or as it put it “Data has been destroyed”. That’s always a pleasant message to read). Suddenly, half the music on my iPod wouldn't play, it skipped songs until it found a song it would play... really annoying. I tried to format the iPod using the iPod software... buuut it told me that it wasn’t an iPod that was connected (Funny that... lol). After the first iPod crash, it would react differently when connected. It would once again pop up with the “Found new hardware” bubble, “Apple iPod...”, “Disk Drive...” ... then iTunes loads... then iTunes freezes... then the iPod disconnects 2 mins later, then iTunes unfreezes. THEN the next time the iPod is connected, it would say it was an “Unknown device”, and that it has “Malfunctioned”.
    It seems that, oddly enough, my iPod (I own the 30gig iPod Photo) does not like USB 2.0... I’m thinking that it must not support some of the device commands the PC is sending to it... Weird though, because on other USB 2.0 PCs it worked fine. (I got the best results out of Dell PCs...). IF USB 2.0 is disabled and slows to USB 1.1 the iPod works a charm... jumped up without an issue in the world. To disable USB 2.0, jump into BIOS as your pc is in its POST stages... this being, when the PC is first turned on and presents a message such as “Press DEL to enter setup” (or something similar), do so. Then refer to your manual on how to disable USB 2.0, if possible. Apply the changes and reboot. Be sure not to mess around with other settings, it is very easy to mess up your computer if you change settings you are not familiar with.
    Other solutions would be to run the iPod via Firewire... if you can get a cable. Run along to your local mac store and see if they have one in stock. I’ll get back on here to post if using Firewire solved the issue later.
    Perhaps a motherboard BIOS upgrade, or newer drivers could resolve the issue. This may explain to some people why their iPod stopped working overnight after working fine for so long, maybe an update of the sort was installed. Apparently my motherboard already has an update, so I’ll test that sometime and post my results as I investigate further, but as for now I’m just happy my iPod is working, even if it is taking ages to transfer (25 gigs of music takes awhile over USB 1.1 lol...).
    Also, I might add that my motherboard is an ASUS P5P800 with the Intel 865PE chipset. It could be an interesting pattern seeing which motherboards do not seem to be compatible with the iPod at USB 2.0 speeds.
    As long as this post was I hope that someone gets some use out of it. I’ll post further findings as I investigate this matter further.
    Happy iPodding!

    hi Jazza!
    the best explanation for this that i've seen is that there can be power drain problems in USB 2.0. drop below 500 mA running through the port and everything goes to pot. this may well explain why switching back to USB 1.1 sometimes works like a charm, and also explains why it's important to have the ipod plugged into a high powered USB port rather than a low power port.
    i've seen a confirmed case of a USB connection going west after a scanner got plugged into the beast in question ... periodically i see other reports along these lines, too.
    Roger Whiteley, "USB Device Not Recognized" #16, 04:18am Aug 3, 2005 CDT
    love, b

  • Getting unknown error when printing with latest version(using HP Laserjet 1200). I can't print at all using this version. Able to print previously.

    I ceased to be able to print when the latest version of FireFox was
    downloaded. I can print from the same websites using I. E.
    My printer is a HP Laserjet 1200 series. I only get the error(an unknown error occurred while printing) when trying to print through FireFox. I can print email fine and any other instance as long as I'm not going through FireFox.

    Hello Josh,
    We are using a couple of EFI (Fiery) controllers with our Canon copiers and I have been told by Canon support that we need to be using the MacTel (Universal Binary) versions of drivers for Leopard. Luckily for us we have mostly new models of RIPs and the UB drivers exist for these models, but I know that they are not available for all models, which I believe includes your X3e.
    To determine if you have a driver or RIP issue, you could save the file as either PS or PDF and then use the EFI utilities, such as Command Workstation, to import the file to the RIP (select Process and Hold) and then see if you can print your multiple copies that way. If that works then you know that the RIP is probably okay.
    The next test would be to create a generic PS queue to the X3e and print using this queue. If this works then you can narrow your issue down to the driver.
    PaHu

  • B1 Query returning truncated decimal places when the CASE statement is used

    Hi All,
    Perhaps this is a friday thing.
    In B1 the price setting is for 5 decimal places. I have a query the run a business process looking at the data in the Special Prices Tables. When I run the Query in SQL, the output show the correct number of decimal places. However, when the Query is then  saved and run in B1, the output is truncated to 2 decimal places. Any ideas as to how I can prevent this for happening?
    T0: Points to teh OSPP Table
    T1: Points to the OSP1 Table
    The portion of the query causing the issue is as follows:
    case
       when (T1.price is not null) then
             T1.price
       else
           T0.price
    end

    Hi Earl
    Seems you are right, I have tested with a few different formats and each time get a 2 decimal result. In SQL help I found the following which may explain why:
    Result Types
    Returns the highest precedence type from the set of types in result_expressions and the optional else_result_expression. For more information, see Data Type Precedence (Transact-SQL).
    Even tried it in SQL with a stored procedure storing to a temp table and it shows the full decimals, but executing the SP in SAP Business One results in 2 decimals again.
    This is indeed a strange occurrence and I a not sure how you are going to solve it! You can use NVARCHAR for example except that it right aligns the values returned, but at least it doesn't drop the decimals.
    Kind regards
    Peter Juby

  • How to Fecth data from LDB FMF when the report is already using LDB FMB

    Hi ,
    i have a standard program(T. Code - FMB_PT01) that uses logical database FMB.
    When I run this report it will display Budget value and Budget consumed  value.
    When the user double click on total amount .
    Another report RFFMTO10X will be called using submit statement.
    It will show the Respective  Budget Consumption value totals acc to the value type .
    In Report RFFMTO10X  data is retrieved using  logical database FMF .
    But now my requirement is to bring  budget consumed total wrt to value type field from Report RFMTO10X in to  the basic 
    output list.
    For that I have copied standard Report RFFMREP_LDB_PT01 into ZReport and I have added new field in the fieldcatlog.
    but how to bring the budget Consumed wrt to Value type in the basic output  list..
    Please help me
    Regards,
    Edited by: victor B on Jul 4, 2009 12:35 PM

    Hi,
    you can try to call another program using submit and that program will export your required data into memory (EXPORT statement). After successful call of the second program you get your data from memory (IMPORT statement). Or you can try to call subroutine in the second program and use subroutine interface to pass data to and from second program. BTW the logical databases are obsolete so you can also write your own logic to get required data directly from DB.
    Cheers

  • What happens when the Powerbook is being used as a laptop?

    Sorry if you read this twice - I mistakenly posted it as a reply rather than a question. I am waiting for my new Powerbook along with an Airport Extreme Base Station. I plan to network the Powerbook with 2 PC desktops and a PC laptop.I know I will have to use the Powerbook to configure the network, but I want to know whether it will have to be present and connected whenever the network is in use - it is, after all, a laptop and therefore sometimes not in the house. There are only two of us living here, each of whom will own a desktop and laptop when the Powerbook gets here. Would it make a difference to accessibility when the Powerbook is travelling if we connect one of the desktops to the lan port on the Base Station instead of running everything wirelessly?

  • How to reduce the transmission of data when the phone is not used?

    When my iPhone is not used the transmission of data is ongoing and I will not stop the 3G, what should I do?

    Priya:
    It is likely that the BLOB content defined in your table is being stored 'Out-of-Line'. This means that the LOB columns are stored in segments of their own. These then are the segments that may need shrinking.
    http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14249/adlob_tables.htm#i1006363
    Varad

  • Can I stop SMS notification when the iPhone is being used as a phone?

    I love my iPhone, but the one thing that is driving me mad is SMS notifications coming through when I'm talking on the phone - a startling loud alert when the phone is pressed hard against my ear makes me jump every time, and actually hurts a bit too! I don't want to have my SMS alerts as silent, I'd just like the phone to realise that shouting 'PING!' in my ear when I'm on the phone is not good for my hearing or nerves!

  • System freezes when the restart button is used

    When I elect to restart using the restart button the system hangs up. Theis is happens whenever i instruct the system to install updates.  My system is a Satellite P855-S5312 with windows 8 factory installed.

    Satellite P855-S5312
    When I elect to restart using the restart button the system hangs up.
    Does the hang occur during the reboot (and after the shutdown)? If so, what happens when you try to restart after a clean boot?
      1. Open the System Configuration utility (msconfig.exe). You can do that by typing msconfig at the Start screen and pressing Enter.
       2. On the Services tab, set the Hide all Microsoft services check box and then click Disable all.
       3. On the Startup tab, click Open Task Manager, right-click and disable each Startup item. Then close Task Manager.
       4. Back on the System Configuration screen, click OK, and restart the computer.
    -Jerry

  • Using a Substitution Variable in a text box when the member isn't used in a grid

    Hi,
    I'm trying to create a footer in my report to display a substitution variable for the "Period" dimension. The Period dimension is not used in any of the rows or columns in my grid in my report in FR studio. It is left as a POV. I am trying to reference the substitution variable for CurrentMonth, which is independant of what the user selects for the Peiod POV.
    For example, the user runs the report and selects YearTotal for the Period dimension. I want to bring back the substitution variable of &CurrentMonth for Period even though it is not selected in the Grid for the report. Is there a way to do that?
    The workaround I am using is adding a second Grid and selecting the Substitution variable in the row and referencing the function from the second grid, which is hidden. This is bulky, and I'm hoping for a cleaner solution. The function I'm using from Grid 2 is below:
    <<MemberAlias("Grid2", 1, "Period")>>
    If I referenced Grid1 for Period, the function would display the user's POV selection, which is not what I want.
    Any help would be much appreciated. Thanks so much!!
    Tiffany

    Tiffany,
    I do the following which I think may fit you need:
    Add the "Period" dimension to the Columns section.
    Make the "Period" dimension the top most member of your column selections.
    Hide that row.
    Set the left most column to "Current Poinf of View for Period"
    Select "Same As Col A" (for example) for the remaining report columns.
    Add a column to the far right and use the &CurrentMonth substitution variable for the "Period" dimension. (The other dimensions in that column should be set, if possible, to retrieve as little data as possible.)
    Hide the new column.
    Change the function in the footer to <<MemberAlias(Grid1, A, "Period")>>
    This should allow your user to select their desired period without impacting the hidden column value of &CurrentMonth which will be displayed in your footer.
    Bill

Maybe you are looking for