Cursor behavior

Once upon a time, my cursor would snap to the default button in a dialog window. I can't remember when or why that stopped, but I'd like to have that feature again. Any suggestions on a way to do this?

Were you running a special utility for this, such as LazyMouse? Maybe you have to re-install it.
http://www.versiontracker.com/dyn/moreinfo/macosx/23266

Similar Messages

  • Unexpected Windows cursor/Waveform Graph cursor behavior

    Hi,
    I got a very strange Windows cursor behavior with waveform graph. Simplified VI is attached.
    LabVIEW 2014 SP1
    The problem is:
    The VI contains only one waveform graph.
    1. I start the VI. Cursor Movement Tool is selected in the Graph Palette by default. Corresponding “Cross with dot” Windows cursor appears when mouse is moved over the plot area (see image). So far so good.
    2. I select Zoom in the Graph Palette and use it two-five times (second image).
    3. I select Cursor Movement Tool in the Graph Palette again but Windows cursor does not change as it should. It is an open cross now (third image); i.e. the same as shall appear when cross of Graph Cursor Lines is reached.
    4. I click mouse three-seven times anywhere in the plot area and the cursor becomes normal (as in the first image).
    The problem is not only in shape of the Windows cursor. The whole Graph cursor functionality does not work properly if the Windows cursor has the wrong shape.
    Please advise what could cause this problem.

    It seems, i cannot explain the question in good way
    It is not about my data or zooming. It is about strange bahaviour of the Graph. The following sequence of steps illustrates the problem and shows that the zooming is not the issue (or, at least, not the main issue):
    I do the following:
    1. Start the VI.
    2. Select first Graph cursor in Corsor palette and use pop-up menu "Bring to Center".
    3. Zoom couple of times (not too much) keeping the Grapg cursor visible.
    4. Select Cursor Movement Tool in the Graph Palette.
    5. "Open cross" Windows cursor appears from the beginning. I cannot pick up the Graph cursor.
    6. Click left button of the mouse several times in any poin of the graph area.
    7. Windows cursor is changed to the normal "cross with central point".
    8 Now I can pick up the Graph cursor.
    I would suspect problems with zoom until p.5. However p.6-8 are done without any change of the zoom.
    By the way, I found more:
    If I try to move the Graph cursor after p.5, the whole graph moves and fires event "Scale Range Change". It must not happen with Cursor Movement Tool selected.
    I can guess only about some strange setting of the graph. May be I am not aware about them

  • Cursor behavior is very strange as one would hold left arrrow all the time?

    Hello,
    Sometimes ( we can't trace the trigger) we're experiencing wird behavior of the Thunderbird
    All of the sudden cursor in editor (text input areas) starts to run back, as one would hold left/back/ arrow.
    First thought was it is a virus, but apparently there is none.
    at that time In left folder menu: when selected folder tree starts to collapse to root (sub-folders can not be accessible)
    in drop-down menu: when selected, it starts to move to another drop-down continuously
    if we restart application, problem is still there, only if we restart the computer, we can use thunderbird again until next time problems appears.
    system:
    Win 7 home edition

    If your problem goes away in safe mode, the issue is
    * a user settings
    * Hardware Acceleration
    * one or more add-ons
    '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Start Firefox in Safe Mode]''' {web link}
    While you are in safe mode;
    Type '''about:preferences#advanced'''<Enter> in the address bar.
    Under '''Advanced,''' Select '''General.'''
    Look for and turn off '''Use Hardware Acceleration'''.
    Poke around safe web sites. Are there any problems?
    Type '''about:addons'''<enter> in the address bar to open your Add-ons Manager.
    Hot key; '''<Control>''(Mac:<Command>)''<Shift> A)'''
    In the Add-ons Manager, on the left, select '''Extensions.'''
    Disable a few add-ons, then '''Restart Firefox.'''
    Some added toolbar and anti-virus add-ons are known to cause
    Firefox issues. '''Disable All of them.'''
    If the problem continues, disable some more (restarting FF). Continue until
    the problem is gone. After, you know what group is causing the issue.
    Re-enable the last group '''ONE AT A TIME''' (restarting FF) until the problem returns.
    Once you think you found the problem, disable that and re-enable all the
    others, then restart again. Let us know who the suspect is detective

  • Question about strange cursor behavior - Sybase ASE 12.5.4

    Hi folks,
    I have a stored procedure in Sybase ASE 12.5.4 presenting a strange behavior. Follow below some code to simulate the error.
    /* Create the table structure */
    drop table tbx1
    go
    create table tbx1
    (c1 int,
    c2 int,
    c3 char)
    go
    /* Create a CLUSTERED index NOT UNIQUE */
    create clustered index idx1 on tbx1 (c1)
    go
    /* Populate the table with few records */
    insert into tbx1 select 1, 1, 'N'
    insert into tbx1 select 2, 1, 'N'
    insert into tbx1 select 2, 2, 'N'
    go
    /* Test case #1 - The following code will not fetch the 3rd record */
    declare c1 cursor for
    select c1, c2 from tbx1 where c3 = 'N'
    go
    declare @c1 int, @c2 int
    open c1
    fetch c1 into @c1, @c2
    while @@sqlstatus = 0
    begin
      select @c1, @c2  -- View the current fetched row
      update tbx1 set c3 = 'N' where c1 = @c1 and c2 = @c2
      fetch c1 into @c1, @c2 
    end
    close c1
    deallocate cursor c1
    /* Recreate the table structure */
    drop table tbx1
    go
    create table tbx1
    (c1 int,
    c2 int,
    c3 char)
    go
    create clustered index idx1 on tbx1 (c1)
    go
    /* Repopulate the table */
    insert into tbx1 select 1, 1, 'N'
    insert into tbx1 select 2, 1, 'N'
    insert into tbx1 select 2, 2, 'N'
    go
    /* Test case #2 - The following code enters in an infinite loop, fetching the 3rd record indefinitely */
    declare c1 cursor for
    select c1, c2 from tbx1 where c3 = 'N'
    go
    declare @c1 int, @c2 int
    open c1
    fetch c1 into @c1, @c2
    while @@sqlstatus = 0
    begin
      select @c1, @c2 -- View the current fetched row
      update tbx1 set c3 = 'N' where c1 = @c1
      fetch c1 into @c1, @c2 
    end
    close c1
    deallocate cursor c1
    If we execute a select on tbx1 before execute Test case #1, the result is:
    c1   c2    c3
    1    1     N
    2    1     N
    2    2     N
    If we execute the same select on tbx1 after execute Test case #1, the result is:
    c1   c2    c3
    1    1     N
    2    2     N   --> row position changed
    2    1     N   --> row position changed
    Analyzing the execution plan, updates on both Test cases are being done in deferred mode.
    Could someone answer my questions, please:
    1 - After executing Test case #1, 2nd and 3rd record change this position in table. How could this happening since I'm not updating any fields in the clustered index? This have any relation with deferred update deleting and reinserting the rows on overflows pages?
    2 - Suppose the updates are changing the rows position in the table, how could explain the inconsistent fetch order on cursor processing (on Test Case #1, only 2 records are fetched - on Test Case #2, the loop never ends)?
    Regards,
    Douglas

    Thanks for your replies. I've already solved my problem, just creating a unique clustered index. But I haven't understood what happened yet in the 2 cases above.
    As suggested by Mark, I've read Chapter 18 from Transact SQL Users Guide. In section
    "Join cursor processing and data modifications", there is a citation about what happens with cursor position after a update:
    "A searched or positioned update on an allpages-locked table can change the location of the row; for example, if it updates key columns of a clustered index. The cursor does not track the row; it remains positioned just before the next row at the original location. Positioned updates are not allowed until a subsequent fetch returns the next row. The updated row may be visible to the cursor a second time, if the row moves to a later position in the search order".
    As stated above, the cursor position keeps the same independently if the rows change their order.
    I don't know if my logic is very simplistic, but I imagine that what should happen in #Test Case 1 is (assuming the access method is a clustered index scan):
    a) After the 2nd fetch, cursor position is on 2nd row:
    c1   c2    c3
    1    1     N  
    2    1     N   <-- cursor position
    2    2     N  
    b) After the update, 2nd and 3rd rows switch their positions, but cursor should keep its position (before 3rd row):
    c1   c2    c3
    1    1     N  
    2    2     N  
                    <-- cursor position
    2    1     N
    c) On 3rd fetch, the 3rd row is read "again" and cursor reaches the end of table.
    In relation #Test Case 2, I can't imagine how a cursor could enters a infinite loop since the cursor position shouldn't change and "apparently the row positions are the same" after the "incorrect" update.
    Moreover, I still have doubts about how a field update that isn't in a clustered index can change row position in a allpages-locked table.
    The main goal of my questions isn't solve the problems but get a better knowledge about some Sybase internals (and avoid similar problems in the future).
    Please give me more detailed explanations about my questions and comment my analysis. Related readings about this issues are welcome.
    Douglas

  • Odd Text Cursor Behavior

    In the last few months I've seen what may be a change in the way the text cursor moves in text fields, particularly in Mail.
    In Mail I'm composing a reply to an e-mail message. I've typed some text that occupies two lines. The cursor is in the third, blank line. If I press "up-arrow" the cursor moves to the end of the second line. If I press "up-arrow" again the cursor moves to the beginning of the first line. If I press "down-arrow", the cursor moves to the beginning of the second line. Very odd.
    I was used to being able to cursor past the end of one line to the beginning of the next line and then being able to cursor up and down in that first column position. That no longer works reliably, often causing the cursor to move to a position far to the right of the first column.
    Does anyone else see this? Did a change in an OS update alter the way the text cursor works in Mail? In TextEdit the cursor still works the way it used to. I have no third-party plug-ins for Mail.

    Either you’ve messed with the Preferences > Junk Mail > Advanced settings, or those settings have become corrupt, or you have one or more rules that have a bearing on this.
    Assuming it isn’t the latter, try this:
    1. Go to Preferences > Junk Mail, disable junk mail filtering, then enable it again. This resets the rule that governs what the junk filter does.
    2. Choose either Training or Automatic mode (it doesn’t matter) and leave the other options checked. Click Advanced to see how the junk filter rule is defined now if you want, but don’t touch anything there.
    3. Reset the junk filter database (Preferences > Junk Mail > Reset).

  • Cursor behavior in CAD - UCCX

    UCCX version 9.0.2.11001-24
    Agent Desktop 9.0.2.1063
    We recently upgraded from version 5.0 to the new version.  Since then, agents have complained that when they receive a skill call, the CAD window takes control of the mouse from whatever they were working on (document, email, etc).  Apparently this was not the case with the old version.
    We have tried changing to the different window behavior under Preferences, but only Stealth makes a difference.  This is not an option for us, as our agents need to see the incoming call data on the screen.
    Is this normal behavior in the current version?  Is it a known caveat that may be addressed in future updates?  Is there a fix that I haven't yet found?
    Thanks for any help,
    Alan Short
    American Kennel Club

    What do you mean by "takes control of the mouse"? CAD will become the active window upon an incoming call. This is expected unless you use Stealth mode and has been the case as long as I can recall, though it's been years since I have tested a 5.0 system.
    Please remember to rate helpful responses and identify helpful or correct answers.

  • Did OSX Mountain Lion change cursor behavior in mail?

    Just upgraded to OSX Lion (working like a charm) and I just noticed that the cursor showing "current message" in mail seems to be behaving differently.  I have my mail sorted with the most recent at the top and as I move down, they become older.  Before, when I deleted a mail the cursor showed the next most recent mail as current (it moved up) - which I really didn't like since I had to move the cursor down to see the next oldest.  Today with the upgrade the cursor stays put and the next oldest mail is moving up to become the current mail.  I really do like this and wanted to check if I am imagining things.  Thanks. 

    Make sure your Mac qualifies to run Mountain Lion >  Apple - Upgrade your Mac to OS X Mountain Lion.
    Disable anti virus software and turn off the Firewall in System Preferences > Security & Privacy.
    Then try here >  Mac App Store: How to resume interrupted downloads
    If that doesn't help, click Store from the App Store menu bar top of your screen. From the drop down menu click Check for Unfinished Downloads.
    Keep in mind, for downloading Mountain Lion from the App Store, a high speed (broadband) internet connection is strongly recommended by Apple as noted here > iTUNES STORE - MAC APP STORE - TERMS AND CONDITIONS
    If you need to reinstall OS X or repair the the startup disk using Mountain Lion Recovery, that requires broadband access to the internet via Wi-Fi or an Ethernet connection. OS X is downloaded over the internet form Apple when OS X Recovery is used for reinstallation.

  • Google search textbox funny cursor behavior

    # Open new tab in Firefox V6.0.2
    # Enter string eg. "firefox support" to search bar (select Google as your Search engine)
    # on results page set your cursor between the word and try to enter eg. "user" string
    # Result: after input of 1st character the cursor will reset position to the last position in textbox

    That can be caused by the "Keystroke protection" in Comcast Constant Guard.
    "Configure Anti-Keylogging Settings" -> disable
    *[[/questions/874709]]
    *[[/questions/870165]]

  • Strange cursor behavior?

    Hi, I'm brand new to Flex, and while testing my first program I noticed that I couldn't grab the hslider because my cursor was changing to a text selection cursor. Even though there is no text in the upper left corner, and a panel with no text that contains the slider, when I hover over the top left corner of the application the cursor turns to a selection cursor.  I have no Idea why this is happening.  There are no hidden text boxes or anything like that.  Any help would be appreciated.  Here's the code.
    <?xml version="1.0" encoding="utf-8"?><mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"width="400" height="280" backgroundColor="0xFFFFFF"backgroundImage="@Embed('../bg.png')" creationComplete="setup()" horizontalGap="10"layout="absolute" themeColor="0x8D8D8D" xmlns:components="com.adobe.sync.components.*"> 
     <mx:Script><![CDATA[
     import com.adobe.sync.events.SyncSwfEvent; 
     import flash.display.MovieClip; import flash.events.*; import flash.events.TimerEvent; import flash.text.TextField; import flash.utils.Timer; 
     import mx.core.*; 
     private var ui : UIComponent = new UIComponent(); private var tf:TextField; private var time:Timer; private var secondsLeft:Number = 300; private var started:Boolean; private var min:Number; private var sec:Number; private var timerStarted:Boolean = false; 
     public function setup() : void{
    tf = new TextField();timeLabel.text = "";ui.addChild(tf);
    addChild(ui);
    time = new Timer(1000);time.addEventListener(TimerEvent.TIMER, tick);
     //ui.addEventListener('enterFrame', startTimer);syncConnector.addEventListener(SyncSwfEvent.ROLE_CHANGED, roleChanged);
     function roleChanged(event:SyncSwfEvent):void{
     if (syncConnector.role == "owner"){
    hostPanel.visible = true;showButton.visible = false;}
     else{
    hostPanel.visible = false;showButton.visible = false;}
     function tick(e:TimerEvent){
    secondsLeft = secondsLeft - 1;
    min = Math.floor(secondsLeft / 60);
    sec = secondsLeft % 60;
     trace(sec); trace (sec % 10); if (secondsLeft <= 0){
    countDownText.visible = false;countDownFinishedText.visible = true;timeLabel.text = "0:00";}
     else if (sec < 10){
    timeLabel.text = String(min + ":0" + sec);} else {timeLabel.text = String(min + ":" + sec);}
     function startTimer(){
    secondsLeft = timeSlider.value * 60;
    time.start();
    toggleControls();
    countDownFinishedText.visible = false;syncConnector.dispatchSyncMessage("updateTime", secondsLeft, false);}
     function syncMessageReceived(event:SyncSwfEvent):void{
     switch (event.data.msgNm){ case "updateTime": if (!timerStarted)startTimer();
    secondsLeft = event.data.msgVal;
     break;}
     function toggleControls(){
     if (hostPanel.visible == true){
    hostPanel.visible = false;showButton.visible = true;} else if(showButton.visible == true){
    showButton.visible = false;hostPanel.visible = true;}
    ]]>
     </mx:Script> 
     <components:SyncConnector id="syncConnector" syncMessageReceived="syncMessageReceived(event)" /> <mx:Button id="showButton" right="20" bottom="20" label="Show Controls" click="toggleControls()"/> <mx:VBox x="30" width="50%" textAlign="left" verticalCenter="10"> <mx:Text id="countDownText" x="28" width="168" fontSize="16"text="The meeting will resume in..." verticalCenter="-45"/> <mx:Label id="timeLabel" x="28" y="127" width="152" height="74" fontSize="48"/> <mx:Text id="countDownFinishedText" width="152" fontSize="16"text="The meeting will continue shortly" verticalCenter="58"/> </mx:VBox> <mx:Panel id="hostPanel" left="20" right="20" top="20" bottom="20" alpha="1.0" layout="absolute"title="Host Controls"> <mx:Button id="hideButton" right="10" bottom="10" label="Hide Controls"click="toggleControls()"/> <mx:Button left="10" bottom="10" label="Start" click="startTimer()"/> <mx:HSlider id="timeSlider" left="10" right="10" top="10" height="36"labels="[0,20,40,60,80,100,120]" liveDragging="true" maximum="120"snapInterval="5" tickInterval="10" value="10"/> </mx:Panel> 
     </mx:Application>

    You've got your countdown text in the upper left hand corner (X=28).  Change that to a label. 
    If I ever have a front end issue where nothing happens when I think it should it is more often than not due to a front end error being thrown.  However, you will only see this error if you are running the debugger version of Flash in your browser (remember it is browser specific - so one loaded on Chrome isn't the same as one loaded in Firefox, etc).  Google "flash debugger player" to find it. 
    I've noticed you've got an "mx" prefix on everything including your app.  MX was the precurser to the "S" (Spark) prefix.  There are a few remaining components that are still MX, but you should really be using Spark components for everything.  Faster, better, easier, etc. 
    Finally, you're really into absolule layouts, huh?  Some objects (like the panel) already have layouts assigned to make your life easier.  You'll want to get into building skins and components to build out the layouts like you prefer then you'll spend less time with all the x and y business.  Also try playing with the vert and horizontal layouts. 
    Good luck!

  • Making an rxvt-unicode (urxvt) cursor act the same as a console cursor

    Is there a way to emulate the exact same cursor behavior in urxvt as one would find on the Linux console (i.e. not under X11).
    I am used to working at the console and in this environment, the cursor is a blinking underscore by default.  However, it's color, shape, and blinking behavior can be controlled via character escape sequences.  Some applications take advantage of these facilities.
    I can configure urxvt to show the cursor as either a block or underscore, and also enable or disable blinking, but these options are either set in a configuration file or at the command line.  I cannot figure out how to enable them at run time.  The usual to set the cursor escape sequences seem to be ignored.
    Has anyone successfully managed this?

    bohoomil wrote:
    If you mean blinking underscore, put the following to your .Xresources:
    URxvt.cursorBlink: 1
    URxvt.cursorUnderline: 1
    -- or launch urxvt with -bc -uc parameters.
    Thanks, though unfortunately these are the configuration options and command line switches that I was referring to.  Do you know if there is a way to change the appearance of the cursor at run time?  In other words, when the program is running?
    Ideally, I'd like urxvt to respond to the ANSI cursor codes which affect the cursor appearance.  I've been hunting around trying to determine if this is implemented in urxvt but I haven't found much on the subject in the urxvt man pages.

  • Drag and Drop Cursor changes - not working

    I have fully implemented a working drag and drop Swing application, but I am running into problems with the cursor.
    My application has some drop targets that set the cursor to DragSource.DefaultCopyNoDrop, and some that set it to DragSource.DefaultCopyDrop. The problem is once I change the cursor DefaultCopyDrop, I can never change it to NoDrop. I can however change it from NoDrop to Drop. I have tried it with jdk1.4 beta3 and rc.
    An example of this cursor behavior can be found at:
    http://www.javaworld.com/javaworld/jw-03-1999/jw-03-dragndrop.html
    I found some information related to this at:
    http://developer.java.sun.com/developer/bugParade/bugs/4407521.html
    I have tried using a null cursor in the startDrag method.
    Does anyone have a DND example where the cursor consistantly changes to give drop feedback that works with the DND in JDK1.4?
    Dave

    Hi, I also want to implement DND. I am using JRE1.3.1
    I am also facing the cursor change problem. i have passed null in the startDrag method. This problem get solved to some extent, but still many times cursor is not changing. I have created my dragSource and drag Target
    in the Constructor of my tree in a separate thread like
    // IN CONSTRUCTO OF TREE
    SwingUtilities.invokeLater( new Tree_DropTarget(this) );
    SwingUtilities.invokeLater( new TreeDragSource(this,
    DnDConstants.ACTION_MOVE) );
    Than in the target and source class
    publi clas Tree_DropTarget implements DropTargetListener,Runnable
    public Tree_DropTarget(JTree tree)
    m_dropTarget = tree;
    public void run ()
    try
    Thread.sleep(2000);
    catch (InterruptedException e)
    m_dropTarget = new DropTarget (m_targetTree, this);
    Same Way I have done for DragSource.
    Is anything wrong there???
    I am also facing 1 more proble, sometiems DND events are getting fired on navigating through the nodes, even though i am not dragging the node. And getting the Below exception some times
    java.lang.NullPointerExceptionat sun.awt.dnd.SunDropTargetContextPeer.handleMotionMessage(Unknown Source)
         at sun.awt.windows.WToolkit.eventLoop(Native Method)
         at sun.awt.windows.WToolkit.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    This exception I am not able to get who is throwing as all exceptions i am catching.
    Please help me, if u had any idea about these problems.

  • Cursor positioning in textbox

    Hi,
    I am developing an app in which I want to have a textbox with cursor ?? The coursor positioning is an issue for me.
    Its not proper... Can anyone help??

    Hi again,
    i now have found a workaround for the problem:
    After enabling Compatibility mode and selecting "Windows XP
    Service Pack 2" for "Flash.exe", the cursor behavior is back to
    normal.
    This seems to be a Bug in Flash or Windows Vista.

  • Please HELP Lenovo G410 Cursor Problem

    Please help, iam experiencing a very annoying problem with my new lenovo G410 cursor behavior. At some time my cursor always jumps to another arear. for example when iam typing, at some time the cursor go to another area of the screen, and this really disturbs and annoy. is there anybody who is experiencing this too.... is there any silution for this? thx vry mch...

    Hai,
    If you still have mouse pointer moving when typing, following tips may help from what i experiances before.
    Some optical mouse required a mouse pad for it's working properly.  it's depend on mouse quality, if u do not have mouse pad on your mouse, some mouse will detect motion error on your tables.
    If you do not have mouse pad, pls use a white paper put under your mouse and try it.
    Turn off your Touchpad, because when u typing, your hand may be disturb Touchpad area and its mouse point will moving. because touch pad is a sensetive part if something put under it. (Refer to your Fn key to turn on/off touchpad)
    Nicholas K.H.Chai
    Malaysia
    YM: ckhown

  • 10.4.11 update and cursor jump

    This problem occurs in Thunderbird, MS Word, Allgood Solitaire, Firefox, and so on.
    I let Software Update download the 10.4.11 patch. I installed, rebooted etc. The cursor jumps when I use the trackpad, and also acts as double-click when I mouse-over a link, or hover over the deck in Solitaire. Action in Word was especially annoying -- cursor would select entire paragraphs or lines as I typed. I have to keep moving the cursor out of the window. The behavior for the window reminds me of focus feature in window under X-windows or Solaris, but here I can't tu
    rn it off.so
    Cursor behavior improved somewhat after running Disk Utility and fixing permissions.

    I think 10.4.11 mistakenly sets Trackpad Gestures/Clicking as a default.
    Here's the solution:
    System Preferences -> Keyboard & Mouse -> Trackpad
    Under Trackpad Gestures, un-select Clicking.
    Good luck!

  • How do i keep my cursor from jumping around when i am typing

    how do i keep my cursor from jumping around when i am typing [email protected]
    == This happened ==
    Every time Firefox opened
    == none

    Check your settings in System Preferences >  Trackpad
    Try a different Tracking speed.
    Sometimes just cleaning the trackpad can avoid erratic cursor behavior.
    How to clean Apple products

Maybe you are looking for

  • Early 2008 24" imac ram upgrade issues

    Hi everyone.  Hope you guys can help diagnose a problem I have with my imac. It's an early 2008 24" imac with 3.06 Ghz processor and an NVIDIA Geforce 8800 GS 512 graphics card. After buying Empire: Total War I thought it best to upgrade the 2GB RAM

  • Trying to speed up my Mac

    I have an iMac with 1.83 GHz Intel Core Duo. Lately, it has been booting up slowly and slowing down overall. I am wondering if it is safe to use Clean My Mac by McPaw?? There are quite a few positive comments in their reviews but also quite a few neg

  • Firefox 3.6.13 hangs freezes repeatedly with multiple tabs open

    I am running FF v3.6.13 on a Vista laptop. I typically have over 60 tabs open during a session (pretty much the same ones each time). In the last two weeks, FF has started freezing repeatedly while these tabs are open, whether I am using it or it is

  • Spam email being sent from my AOL account

    Hi All I know there are a lot of posts on this, I have had a look through but nothing seems to mach my circumstances. Early this morning I received a few email failure notifications to emails I didn't send. I checked my sent items and sure enough I h

  • Hp r707 photosmart camera

    Is there somewhere i can send my HP R707 Photosmart camera, to see if it can be fixed, it just stoped working tommyo