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.

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

  • Integrated phone in CAD UCCX version 8

    Hi All
    I seem to remember something about an integrated phone in new CAD version for a release of UCCX version 8. From some presentation.
    I just can't find any thing about it. Can any one help me to locate info or correct me.

    According to the CCX 8.0 CAD User guide, CAD works with IP Communicator, but then it always has. Also there is a mention about Dial Pad being modeless now, seems that it can stay on top.
    You have never needed a hard phone if you have a IP Comm phone. This is what I do for remote work all the time.
    Hope this helps.

  • 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).

  • 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]]

  • 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

  • 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!

  • Chat within CAD UCCX 8.5

    Is there a way I can leave chat enabled for CAD, but have it not show the users states (IE: Not ready, ready) in the "friends" list? So instead of showing the users name and status, it just shows the name of the agent.
    Thank you,
    -Jake                  

    As far as I know this is not a configurable aspect of CAD.
    HTH
    Tanner

  • Weird behavior in UCCX 7.0.1 SR05

    Hi team,
    I've got a weird behavior in a UCCX 7.01 SR05 installation.
    All incomming calls which go to an agent who is set "ready" set the agent to state "not ready" and go to queue...
    This behavior also occurs with standard script icd.aef.
    Had  anybody has same behavior in an UCCX 7 installation? Or can anybody  help me? I checked my configuration twise and couldn't find
    any issue.
    Thanks a lot,
    Tobias

    I've seen this happen before because of a CUCM configuration issue.  Check whether the CUCM Calling Search Space for the UCCX CTI ports can call the partition of the agent's extension.  My guess is that the call attempts to connect but CUCM will not allow it to go through.  UCCX then marks the agent as "Not Ready" and drops the call back in queue.

  • UCCX7 - Monitoring/Recording packet flow behavior

    Hi,
    I have single UCCX7 box which all services include monitoring/recording started and want to understand the packet flow behavior with CAD application.
    1. Monitoring, Desktop capture mode
    1) in CSD, select CAD and click "start Monitoring"
    2) copy the RTP packets from agent IP Phone to CAD via IP Phone "SPAN port" feature
    3) CAD sends the RTP packets to CSD and CSD able to hear the agent IP Phone conversation via CSD's sound card
    ->please advise whether the steps are correct!!
    2. Monitoring, Server capture mode
    1) how start the monitoring?
    2) where the actual file stores? which directory in UCCX box?
    (**I know UCCX's 2nd NIC which configured to VOIP monitor receiving RTP packets via switch's SPAN port but don't know how the monitoring start and where the file stored)
    3. Recording, Desktop capture mode
    1) click "start Recording" in CSD or CAD (CAD=add button from work flow user interface)
    2) copy the RTP packets from agent IP Phone to CAD via IP Phone "SPAN port" feature
    3) where the actual file stores? CAD box or CSD box?
    (**I know CSD can retrieve the recorded file and have an option to save but don't know where the recorded file retrieved)
    4. Recording, Server capture mode
    1) how start the recording?
    2) where the actual file stores? which directory in UCCX box?
    Advise please!!

    Hi,
    1. This is correct. CSD sends the startMonitoring message to CAD directly. CAD sends RTP packets to CSD directly and CSD plays them.
    2. CSD sends startMonitoring to UCCX server. Since the agent phone is spanned to the UCCX server's VOIP Mon NIC, the server then traps the packets and sends them back to the CSD which plays them.
    3. Recorded files are stored in TO and FROM .raw format in C:\Program Files\Cisco\Desktop_Audio on the UCCX server
    4. Same as above.
    The best thing to do, and how most of TAC troubleshoots is to use the CSD and CAD debugs set to TRACE and also Wireshark on the CAD, CSD and UCCX server all at the same time.

  • Change to direct dial too UCCX extensions

    Hi,
    It was requested that a change be made so that when user dials the UCCX extension of any of the HD employees, instead of ringing the phone directly, it would route the call to the CSQ trigger extension.  HD has two extensions.  A personal extension and a uccx extension.  The uccx extension is well know now by the users.
    We have a partition setup called All Phones that all extensions including uccx extensions are created under.  I created a new partition and called HDAllPhones.     I then assigned all CSS's the new partition making sure this partition was before the All Phones partition.  I created translation pattern for each UCCX extension to point to the Trigger CSQ.
    When I dial the UCCX extension it works perfectly.  However I am getting strange behavior on CAD where they are not able to go ready or sometimes when ready and a call to HD rings another agent and is answered, it switches them to not ready.
    I am guessing the issue is somewhere on the UCCX side - maybe the application and Partition/CSS assigned?

    Hi djlundberg
    I have created a new String parameter called userInput and have setup a Get Digit String and when I enter a 3 digit extension I'm forwarded to the correct extension.
    But I'm having trouble with the second part.
    Let's say I want to be forwarded to directory number 725 if I press 1 and
    be forwarded to directory number 950 if I press 2.
    How should I configure the Switch string for this? I tried many combinations but I couldn't get it to work.
    Regards.

  • 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.

Maybe you are looking for

  • Two Firefox at the same time, (one with images, other without)?

    Hi, Is is possible to use two firefox browsers at the same time, the one with images enabled, the other disabled?

  • Can I use Apple TV with my MacBook?

    Can I view my MacBook on my TV using Apple TV/AirPlay like I can with my iPad?

  • CRM_ORDER_MAINTAIN problems

    Hello. I'm trying to insert new partner entries to the activity in a badi ORDER_SAVE (pf 00000026). How can I add these entries without loosing other entries with different partner functions? I have tried to call fm CRM_ORDER_MAINTAIN and I'm able to

  • ITunes 7.1 Blurry

    After update to iTunes 7.1 the control bar is blurry. It is blurry untill I redimension the windows of iTunes. I try to unistall and reinstall iTunes, but the problem remains.

  • Stand alone isight still available?

    Hello - I recently purchased a mac pro and was considering picking up a stand alone isight camera. Unfortunately I can't seem to find it listed on the online store - did apple stop making the stand alone model?