Cannot click and drag with bluetooth mouse?

I have installed bluetooth mouse and works fine but cannot click and drag using the mouse in any applications. will highlight stuff and cursor moves fine but then cannot drag using the mouse. Any ideas?

I was trying with this code which I got from this website as I am beginner of AS3.
var images:MovieClip = images_mc;
var offsetFrame:int = images.currentFrame;
var offsetX:Number = 0;
var offsetY:Number = 0;
var percent:Number = 0;
images.addEventListener(MouseEvent.MOUSE_DOWN,startDragging);
images.addEventListener(MouseEvent.MOUSE_UP,stopDragging);
function startDragging(e:MouseEvent):void
images.addEventListener(MouseEvent.MOUSE_MOVE,drag);
offsetX = e.stageX;
offsetY = e.stageY;
function stopDragging(e:MouseEvent):void
images.removeEventListener(MouseEvent.MOUSE_MOVE,drag);
offsetFrame = images.currentFrame;
function drag(e:MouseEvent):void
percent =  (e.stageX - offsetX)/images.width;
percent =  (e.stageY - offsetY)/images.height;
var frame:int = Math.round(percent*images.totalFrames) + offsetFrame +1;
while (frame>images.totalFrames)
  frame -=  images.totalFrames;
while (frame<=0)
  frame +=  images.totalFrames;
images.gotoAndStop(frame);
This has to rotate in top also i.e., I also have images sequence placed with top view also.
If I use keyboard, it has to work with arrow keys also and also with mouse interactivity.

Similar Messages

  • Cant click and drag with one finger, but works with 3 fingers

    Last week, my trackpad starts to fail. Thing is that i can't click and drag with one finger but if i turn on the 3 finges option, i can tap and drag without a problem Check the prefs, universal access too. And everything is ok.
    Reset pram, smc , run & fix permissions but nothing.
    Looking around the internet i found a possible hint and is related to a bad battery condition. But that post talks a physical defective battery. Mine last like 2 hours.Under the battery icon in the finder it saids tha should be replace soon.  Macbook pro late 2008. 4 gb ram , 500 gb hd, 10.7.3
    Any suggestions??

    It sounds like an accessibility feature, although I'm not 100% sure. You can explore the accessibility settings if you like, or for a quick fix you can try going into Settings>General>Reset>Reset All Settings.

  • Cannot click and drag, mouse stays still

    Yesterday I experienced a new behavior in ARD 3, if I click and hold the mouse down the curson will not move if move my mouse. After I release the button the cursor moves again. This happens in both the computers I'm controlling as well as the application itself, so I cannot move windows, I cannot move files on a remote computer, etc.
    Relaunching ARD did not help, restarting the computer did.
    Ideas?
    I am using an Intuos 3 tablet (have been for quite some time).

    I'm not talking about Drag and Drop, I'm describing
    merely moving something. Like moving the main Remote
    Desktop window or while controlling a client moving
    something on screen.
    Drag and Drop it the extreme of controlling which I have no problem doing. I can also resize my window and move it while controlling a client.
    It may have something to due with my Wacom, but a)
    this behavior is new and to my knowledge nothing has
    changed on my system, the Wacom has been there
    forever and b) I'm not about to start NOT using a
    Wacom tablet.
    You don't state when the anomaly actually started or was noticed. I am thinking that it may have started with the introduction of ARD3 or with it's update but you do not state such.
    Sorry, but if you are not willing to rule out if the problem relates to the Wacom tablet or not, then you are making it twice as hard to troubleshoot and I can't see bringing a tablet over from another building to help recreate/troubleshoot your problem.

  • Click and Drag not working with the trackpad....

    Well, this is an unexpected problem.
    Just this morning, it seems my computer is refusing to let me click and drag with the trackpad button. I can click and hold, but when I move my cursor, say in a menu, nothing is highlighted. For sliders for volume, clicking and dragging does nothing. I can't highlight text. It's getting very annoying. It won't work when I tell just the trackpad to click and drag as well (not using the button).
    My hands have been a little "waxy" since I've been sick, but the mouse works perfectly otherwise, so I don't think that's the problem at all. Any suggestions? Please tell me my 'book isn't goin' bad. >>;;

    That seemed to work! After shutting down and taking out the battery, I cleaned my keyboard and computer, too. Seems to work now Thanks!
    Wonder why it did it...a glitch, prolly...

  • Why can't I click and drag clone brush??

    I'm working with a trial version of Aperture and trying to clone out a couple of annoying background details. When I use the clone tool, I cannot click and drag or "paint" with it. I only get a circular clone that is the diameter of the brush. I don't want to clone out the problem areas with a bunch of little circles! I want a smooth, painted cloned area. Is this possible with Aperture or do I need to go back to Photoshop....

    OK--Think I finally discovered the issue. I'm using a trackball and keyboard setup from Euphonix that communicates with the Mac via Ethernet and TCP/IP. Aperture cannot deal with mouse strokes transmitted this way. If I switch to a USB mouse connected directly to the Mac, the brushes work normally. Still a disappointment since the Euphonix is my default keyboard/mouse and I don't really want to keep a separate USB mouse hooked up.....

  • Mouse not clicking and dragging

    My mouse pointer responds well to moving around the screen and double ckicking etc. However when I try to click and drag it 'loses' the object (file name or card in Freecell) or will not select all that I shift& drag. All the drivers are up to date. I have removed, waited and then replaced the Bluetooth USB fitting in the back of the computer and the batteries are fresh. Any Ideas?
    HP TouchSmart 520-1010ukH
    Microsoft mouse model MG-0982
    Windows 7
    This question was solved.
    View Solution.

    Hello again @itsmagicvi,
    If you have tried a different mouse on your computer and it is not happening to that mouse I suspect that your Microsoft Mouse is the problem and suggest you contact Microsoft on their forums at Microsoft Community as they may have addressed this issue with their hardware before.
    I hope I have answered your question to your satisfaction. Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Scripting a mouse click and drag

    does anyone know how to script a mouse click and drag. I tried XTools. No luck. What about Cliclick. I had tons of success with TextCommands but I dont know how to get OSAX plugin code to work. Thanks in advance.
    I am trying to move a desktop clock (QuartzClock) from the center of the screen to the side.

    I tried (unsuccessfully) to find a mouse move and click solution in Applescript.
    My search brought me to this site: http://www.geekorgy.com/index.php/2010/06/python-mouse-click-and-move-mouse-in-a pple-mac-osx-snow-leopard-10-6-x/
    The following python script will move an object from position 60.100 to 60.300
    #!/usr/bin/python
    import sys
    import time
    from Quartz.CoreGraphics import * # imports all of the top-level symbols in the module
    def mouseEvent(type, posx, posy):
    theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
    CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
    mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclickdn(posx,posy):
    mouseEvent(kCGEventLeftMouseDown, posx,posy);
    def mouseclickup(posx,posy):
    mouseEvent(kCGEventLeftMouseUp, posx,posy);
    def mousedrag(posx,posy):
    mouseEvent(kCGEventLeftMouseDragged, posx,posy);
    ourEvent = CGEventCreate(None);
    currentpos=CGEventGetLocation(ourEvent); # Save current mouse position
    mouseclickdn(60, 100);
    mousedrag(60, 300);
    mouseclickup(60, 300);
    time.sleep(1);
    mousemove(int(currentpos.x),int(currentpos.y)); # Restore mouse position
    See also:
    http://developer.apple.com/mac/library/documentation/Carbon/Reference/QuartzEven tServicesRef/Reference/reference.html
    http://developer.apple.com/graphicsimaging/pythonandquartz.html
    Tony

  • With the new Yosemite update (10.10.3) I can no longer transfer my photographs into Adobe  Photoshop Elements by the previously expedient  'click and drag' method. Neither am I able to import or export them. Does anyone have suggestion on moving them?

    With the new Yosemite update (10.10.3) I can no longer transfer my photographs into Adobe
    Photoshop Elements by the previously expedient  'click and drag' method. Neither am I able to import or export them. Does anyone have a suggestion as to how to move pictures between the new Photos and Adobe Photoshop?

    Ah yes school boy error there out of frustration and discontent..
    My issue is with music/apps/films etc not downloading from iTunes / App Store.
    They initially fail and message is displayed stating unable to download / purchase at this time, yet if I retry it says I've already purchased (?) or alternatively I go to the purchased section and there they are waiting with the cloud symbol..
    However some items get frozen in the download window and cannot be retried or deleted. Message appears stating to tap to retry, but even if you stole every bath and sink in the uk you'd still not have enough taps.
    I post here as the iTunes guys are useless in there 'help' and have only advised posting here or phoning apple, at my expense, to explain a problem that could be rectified by forwarding my original email to a techie. However the tech team apparently don't have an email address as they're from ye olde Middle Ages..!
    Anyways I digress.
    So I tried sync to pc, but instead of showing the file as ready to listen/use/view, the iCloud symbol shows and I'm back to square one as the item is unable to download..
    At frustration station waiting for a train from pain...
    All my software is up to date, and had all worked fine prior to the last big iOS update that resulted in all the changes in display and dismay.
    Answers in a postcard :-)
    Much love

  • Issues with Illustrator click and drag

    Running Adobe CC
    on new Macbook Pro OSX 10.10.2
    Recently Illustrator has been slow at tracking my mouse and freezes when I click and drag, and eventually makes the program unresponsive. I have restarted the program, checked to make sure I have the most recent updates. I have also tried restarting my computer, and also running Illustrator without any other programs open and it still doesn't seem to fix the problem.
    I am not experiencing any other difficulties in running other programs, including indesign, photoshop, acrobat, chrome, autocad, etc.

    AI 10 is now 10 years or so old and was never tested on nor designed for Win 7 or Win 8. You should simply assume it's not compatible and will never run properly. feel free to spend your time with the compatibility modes and al lsorts of hacking with the security stuff and otehr settings, but to be honest, it will probably be a waste of time.
    Mylenium

  • Mouse click and drag through turntable animation

    Hi all,
    First - thanks for taking the time to look through and possibly helping me with this question.
    I'm just getting to grips with flash cc actionscript 3.0 - so I apologise in advance to my not so technical jargon.
    In the past I have used actionscript 1.0 to create an interactive html file that contains a turntable animation of a 3D model. Users can mouse click and drag to the left or right to 'spin' the model around - however what they are really doing is scrubing through the timeline which contained 360 images of it from 360 degrees. Similar ideas can be found here: Interactive Thyroidectomy
    Now annoying I can't use the old code any more as I'm working in the latest flash cc actionscript 3.0
    So how do I do the same thing but in actionscript 3.0?
    So I've worked this bit out so far
    On my main stage I have two layers - actions layer and another layer with my movie clip (movieclip_mc)
    In the actions layer so far:
    movieclip_mc.addEventListener(MouseEvent.MOUSE_DOWN, onMouseDown);
    movieclip_mc.addEventListener(MouseEvent.MOUSE_UP, onMouseUp);
    function onMouseDown(event:MouseEvent):void
      movieclip_mc.addEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
      //I should put something in here about mouseX  - but no idea what
    function onMouseUp(event:MouseEvent):void
      movieclip_mc.removeEventListener(MouseEvent.MOUSE_MOVE, onMouseMove);
    function onMouseMove(event:MouseEvent):void
    //I have to put something in about total frames - width of movieclip_mc etc but I'm not sure how   
    // this is what someone else did on another forum - but I'm not sure what it means:
         var delta:int = backgroundClip.mouseX - clickedMouseX;
       var wantedFrame:uint = (clickedFrame + delta * clip.totalFrames / backgroundClip.width) % clip.totalFrames;
       while (wantedFrame < 1)
      wantedFrame += clip.totalFrames;
      clip.gotoAndStop(wantedFrame);
    Also I think i need something in the beginning like.....:
    import flash.events.MouseEvent;
    import flash.display.MovieClip;
    import flash.display.Sprite;
    var clickedMouseX:int;
    var clickedFrame:uint;
    var backgroundClip:Sprite = getChildByName("background") as Sprite;
    var clip:MovieClip = getChildByName("animation") as MovieClip;
    clip.stop();
    clip.mouseEnabled = false;
    .....but I'm a bit confused about what all of it means
    So I understand the principle but no idea how to actually make it work - Could anyone help explain it to me or help with the code?
    Thanks so much to anyone who can offer some help
    Catherine

    Hi Ned,
    sorry to bother you again on this subject -
    the script...
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    worked fine - but when you click and drag on the movie clip it didn't always get to the end of the movie and never carried on through the frames back to the beginning like i wanted it to (such as this one does Interactive Thyroidectomy)
    So I went back to the older 2.0 script and played with it a bit to be :
    function onMouseMove(event:MouseEvent): void {
      changeDistance = movieclip.mouseX - startX;
      travelDistance = startFrame + changeDistance;
      if (travelDistance > movieclip.totalFrames) {
      movieclip.gotoAndStop (travelDistance % movieclip.totalFrames);
      } else if (travelDistance < 0) {
      movieclip.gotoAndStop (movieclip.totalFrames + (travelDistance % movieclip.totalFrames));
      } else {
      movieclip.gotoAndStop (travelDistance);
    .... which almost works but it is very stuttery to mouse over and then it has this output error..
    mouseDown
    ArgumentError: Error #2109: Frame label 2.3500000000000227 not found in scene 2.3500000000000227.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 3.6499999999999773 not found in scene 3.6499999999999773.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 4.949999999999989 not found in scene 4.949999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 6.25 not found in scene 6.25.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 7.600000000000023 not found in scene 7.600000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 8.899999999999977 not found in scene 8.899999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 11.5 not found in scene 11.5.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 12.850000000000023 not found in scene 12.850000000000023.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 14.149999999999977 not found in scene 14.149999999999977.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 15.449999999999989 not found in scene 15.449999999999989.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    ArgumentError: Error #2109: Frame label 16.75 not found in scene 16.75.
      at flash.display::MovieClip/gotoAndStop()
      at flashdoc_fla::MainTimeline/onMouseMove()
    mouseUp
    I've obviously put some code in the wrong place - could you help me find out what it might be?
    I haven't labelled any frames odd numbers such as 15.4499999999999989 or labeled scenes than number either.
    I can send you my scene if that would help?
    Thanks very much for your time Ned
    (p.s Or maybe if it is easier you might offer some guidance as to how i can change the action script
    function onMouseMove(event:MouseEvent): void {
      movieclip.gotoAndStop(Math.round(mouseX/movieclip.width*(movieclip.totalFrames-1))+1 )
    to allow it to be more like Interactive Thyroidectomy

  • I cant click and drag my photostream photos to pin them to my desk top with out them being very small and not being able to make notes in paint brush on them.  I used to before the update.

    I used to be able to open, click and drag photos from a photo stream folder, and pin them to my desk top.  After the update my PC made me download icloud to my computer to access my photo stream pictures.  Now if I go into my icloud photostream tab click and drag.  It asks me if I trust the computer I am saving it to.  If I click yes, it save this tiny picture to my desk top. 
    In order to accomplish what I need to do with the photos I have a few extra steps added to my perfect process.  Has any body ran into this and do you know how to simplify this.
    Thanks

    1. If you break your post into paragraphs it is much easier to read.
    2. I have no idea what your post is referring to, and how - if at all - it relates to iPhoto.
    3. It's a good idea to re-read what you've posted, and ask yourself how it might look to someone who doesn't know you and doesn't know what's going on with your machine.

  • I have created a site with iWeb. I have replaced the iWeb Nav bar with a vertical one I made myself. Problem is, my top button disables itself if it overlaps into the "hidden" nav bar area. I can cmd click and drag it into this area, but then all the rest

    I have created a site with iWeb. I have replaced the iWeb Nav bar with a vertical one I made myself. Problem is, my top button disables itself (and the animation doesn't work) if it overlaps into the "hidden" nav bar area (indicated by a blue rectangle). I can cmd click and drag it into this area, but then all the rest of my site is pushed down the page. Don't know what to do about this. I don't know how to bring the rest of the page up without dragging it also into the designated nav bar area. Also, by doing this, is it affecting my site in ant way? see my site here at www.steveburrowsimages.com
    The home page is with it all draged into the nav bar area and the about page is with is outside the nav bar area (notice that the top button does not animate or work as a button.
    Getting confused here. Anyone got any ideas?

    Well, you made a good start with SEO by getting rid of the iWeb default navigation since it doesn't help the spiders and, out there in the real world, there are more people than you would think with javascript turned off in their browsers.
    One of the downsides of iWeb is that it doesn't allow for the alt attribute in the img tag. Its well worth adding these to give you extra keywords even if you have captioned all your images. Use iWeb SEO Tool for this...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Tags.html
    iWeb, just like most drag and drop software, creates a huge amount of code which causes the pages to load slowly in the browser. Running you files through an optimizer will help to reduce this problem and further reduce the size of image files even beyond the initial optimization you do before loading them into iWeb...
    http://www.iwebformusicians.com/Search-Engine-Optimization/Optimize.html

  • I am unable to click and drag some songs to a playlist I just created. There is a red circle with a line diagonal through it when I attempt to drag it to the playlist?

    I am unable to add some songs to a playlist.  There is a red circle with a line diagnonally through it that appears when I click and drag to the new playlist.

    That problem can be caused by the Yahoo! Toolbar or the Babylon extension that extents too much downwards and covers the top part of the browser window and thus makes links and buttons in that part of the screen not clickable.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How do I create an object with "click and drag" interaction?

    I want do make an object that I can move around the screen at will, so, I need a way to make a click and drag object in adobe edge.
    I also need this to work with touch devices and also to limit the movement of the object to one direction (x or y).
    Thank you all in advance.

    Thanks for your reply.  I tried doing what you said, creating a command by opening a new flash file, etc.  For some reason, I could make a rectangle and save that as a command, but making a shape using the polystar command didn't work - there was a red "x" next to it in the history panel.
    Anyway, even if I could do that, it's not what I want to do.  I want to be able to create a shape and then be able to change the shape dynamically.  For instance, I want to be able to create a series of points and draw curves between them to create a closed curve shape.  Then I want to be able to change the positions of the vertices so that the shape changes as the .swf is running.  Thanks.

  • Mouse will not perform click and drag

    My Magic Mouse will not perform click-and-drag function anymore after Mavericks.

    Problem solved thanks to Eric Cote:
    https://discussions.apple.com/message/15696875#15696875:
    "you may want to trash your preference files under:
    Users/<your user name>/Library/Preferences/com.apple.driver.AppleHIDMouse.plist
    then reset the mouse prefs"
    Thank you Eric!

Maybe you are looking for

  • Error in compiling a custom dictionary for text analysis

    I got a error when I tried to compile the custom dictionary for the Text Data Processing transformor. I am looking for help to solve the problem or work around the error. The error is as follows: [ERR] Can not create file [C:/ws_sclg.1] Here is the c

  • Request for Code for a report

    Dear Abapers, Can anyone help in writing the report(code) to just display Purchase Orders without the Purchase Requisition Numbers. Thanx, Suruchi

  • How to check deleted record in a table

    Hi to all, any one can do need ful to me for how to check last deleted record in a table.

  • Sych drift using edit to tape

    FCP is running perfectly in all areas except for edit to tape. This is a new issue since upgrading to 5.1x and I've been using FCP since version 1. Audio drifts about a frame per second from the assemble edit point and i cant figure it out. Either th

  • I have a IPod touch version 2.1.1 (5f138) and I want the newest version that 2.1.1 allows

    I have a IPod touch version 2.1.1 (5f138) and Im aware that I cant download the current update. I was wondering if there is any way for me to download older updates so that I can make the iPod somewhat functional specifically with downloading apps