Cannot move an image using mouse (was: Hi;)

I m trying to move a image via mouse.
But i cant move that image.
I wrote this;
this.onMove(e.pageX, e.pageY);
and took mouse position but i cant find how can i move image with X and Y coordinats.
Can you help me pls

Hi im using this code
>>MySymbol.click<<
sym.$('MySymbol').offset({
    left: 50,
    top: 20
but it doesnt change anything. Can you help me plss

Similar Messages

  • After last Moutain Lion update, suddenly and sporadically I cannot move my files using my mouse.  I only get a "ghost" image.  Moving items to the trash is, of course no problem.  Does anyone have a solution?  I've updated my permissions...no go!

    Cannot move icon files using my mouse or cursor after installing Mountion Lion's last update.  After rebooting several times, this sometimes fixes the problem.  I've tried checking and updating my permissions, but this hasn't worked.  What's happening?  I haven't backed up so I can't go back to Lion.  Has this happened to anyone else?  What can I try?  Thanks!

    Try this:
    Repair the Hard Drive and Permissions - Lion/Mountain Lion
    Boot to the Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    Repair
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu. Select Restart from the Apple menu.
    Now download and install OS X Mountain Lion Update v10.8.3 (Combo).

  • I cannot move photos from iphone to MacBook.  I get an error message that says: Error downloading image. iPhoto cannot import your images because there was a problem downloading an image. How can I fix/remedy this?

    I am receiving an error message every time I plug my iPhone 4S into my MacBook: Error downloading image. iPhoto cannot import your images because there was problem downloading an image.  How can I fix/remedy this?

    try Image Capture - in your applications folder
    LN

  • Cannot move some images in iPhoto to desktop

    I cannot move an image from iPhoto to my desktop.  Also, when I click on the image in iPhoto to enlarge it, I get an exclamation point.  When the image is small size in iphoto, I can see it.  But if I click on it to enlarge it in iphoto, I get the exclamation point.  Don't know why this is happening?  I have Iphoto 09, version 8.1.2 (424)  My goal:  Be able to move any image in iphoto to my desktop and not get the exclamation point anymore.
    Message was edited by: rjduffy61

    The ! turns up when iPhoto loses the link to the original image - and that's why you can move it to the desktop.
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Repair Database. If that doesn't help, then try again, this time using Rebuild Database.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. (In early versions of Library Manager it's the File -> Rebuild command. In later versions it's under the Library menu.)
    This will create an entirely new library. It will then copy (or try to) your photos and all the associated metadata and versions to this new Library, and arrange it as close as it can to what you had in the damaged Library. It does this based on information it finds in the iPhoto sharing mechanism - but that means that things not shared won't be there, so no slideshows, books or calendars, for instance - but it should get all your events, albums and keywords, faces and places back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one.  
    Regards
    TD

  • Can anyone help me to add method to rotate the image using mouse?

    Hi everyone, i am currently creating a game which require the user to be able to drag and rotate the image
    on the screen..but sadly...i'm only able to do the dragging part..
    Can anyone be able to help me add the method to rotate the image using the mouse?
    Thanks :-)
    the code
    import javax.swing.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.awt.geom.*;
    class Game extends JFrame {
         DisplayCanvas canvas;
         public Game() {
              super("My Game");
              Container container = getContentPane();
              canvas = new DisplayCanvas();
              TitledBorder border = new TitledBorder("Game Window");
              border.setTitlePosition(TitledBorder.BOTTOM);
              canvas.setBorder(border);
              container.add(canvas);
              addWindowListener(new WindowEventHandler());
              setSize(450,400);
              show();
              class WindowEventHandler extends WindowAdapter {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              public static void main(String arg[]) {
                   new Example();
         class DisplayCanvas extends JPanel {
              int x, y;
              BufferedImage bi;
              DisplayCanvas() {
                   setBackground(Color.white);
                   setSize(450,400);
                   addMouseMotionListener(new MouseMotionHandler());
                   Image image = getToolkit().getImage("duke.gif");
                   MediaTracker mt = new MediaTracker(this);
                   mt.addImage(image, 1);
                   try {
                        mt.waitForAll();
                   catch (Exception e) {
                        System.out.println("Exception while loading image.");
                   if (image.getWidth(this) == -1) {
                        System.out.println("***Make sure you have the image "
                        + "(duke.gif) file in the same directory.*****");
                        System.exit(0);
                   bi = new BufferedImage(image.getWidth(this),
                   image.getHeight(this),
                   BufferedImage.TYPE_INT_ARGB);
                   Graphics2D big =bi.createGraphics();
                   big.drawImage(image, 0, 0, this);
              public void paintComponent(Graphics g) {
                   super.paintComponent(g);
                   Graphics2D g2D = (Graphics2D) g;
                   g2D.drawImage(bi, x, y, this);
              class MouseMotionHandler extends MouseMotionAdapter {
                   public void mouseDragged(MouseEvent e) {
                        x = e.getX(); y = e.getY();
                        repaint();

    research a bit on AffineTransforms. you can set the rotated instance of the Graphics2D class and it will do the rotations for you :-D

  • Rotating and dragging of image using mouse

    hi everyone,
    I've got problems with dragging and rotating of images using the mouse
    Can anyone show me how to that?
    Thanks a million

    Implement a MouseMotionListener on the Panel that you want to drag the image on.
    public void mouseDragged  (   MouseEvent e   )
           if ( e.getModifiers() == MouseEvent.BUTTON1_MASK )
              if ( dragged )
                  processMove( new Point2D.Double( e.getPoint().x, e.getPoint().y ) );
             else
               wasDragged = true;
                  dragged    = true;
                  dragPoint  = new Point2D.Double( e.getPoint().x, e.getPoint().y );
                  xDiff      = 0;
                  yDiff      = 0;
    private void processMove
         Point2D.Double    point
              Point2D.Double paintPoint = new Point2D.Double( point.x - dragPoint.x, point.y - dragPoint.y );
           BufferedImage  imageBak   = getCurrentBackgroundImage();
           BufferedImage  background = new BufferedImage( imageBak.getWidth(), imageBak.getHeight(), imageBak.getType() );
           Graphics2D     gr         = background.createGraphics();
           gr.setColor( adaptee.getUserProfile().getBackgroundColor() );
           gr.fillRect( 0, 0, imageBak.getWidth(), imageBak.getHeight() );
           gr.drawImage( imageBak, null, (int) paintPoint.x, (int) paintPoint.y );
              gr.finalize();
           xDiff += paintPoint.x;
           yDiff += paintPoint.y;
           dragPoint = point;
           getGraphicsForPanelToDrawOn()..drawImage( background, null, 0, 0 );       
           setCurrentBackgroundImage(  background );
              }

  • Captivate 6 - I cannot confirm popup messages using mouse.  Must use keyboard shortcuts.  Why?

    When a confirmation window appears, I cannot use the mouse to click on Ok, Cancel, Yes, No, Save.  I must use the keyboard shortcut key, such as Enter, Y, N, S, C.  This is extremely frustrating.  Is there an update available that corrects this problem?
    Thank you,
    AT&T Captivator

    Hi tjatt,
                  Is your default text size in windows is Larger -150%? Can you make it smaller - 100% or medium -125% and restart machine? Check whether you can use mouse for confimation windows?
    Text size can be found at Windows Start --> Control Panel -->Appearance and Personalization --> Display
    Thanks,
    Sankaram.

  • User control ActiveX cannot move between objects using TAB

    I created a simple ActiveX control with 3 text boxes.
    I added it as an ActiveX object to a SAP form.
    It apears good on the screen but it seems like SAP is "stealing" the TAB keypress and therefore I cannot move between the ActiveX controls accrdinf to their Tabindex property
    It happed both in VB6 and VB.NET user control
    How it can be solved ?
    Tx Yaron

    I'm assuming you're not using a BusinessObjects reporting solution, which would mean you're posting to the wrong forum.
    Sincerely,
    Ted Ueda

  • Cannot move browser images with ball on mouse

    I used to be able to move the browser images (in split view mode) with the roller ball on the mouse. Now I can't. Help would be very much appreciated. Thanks, jp

    Aperture 3.2.2 Frank. The mouse came with the computer. I dont think it is a mouse issue - I can scroll up and down in all other situations including the browser. I thought I must have inadvertenty hit a letter on the keyboard that turned the system off. And I was expecting a quick and simple answer. I upgraded to Snow Leopard a few months ago but do not recall the issue coinciding with this event. Using the roller ball was such an easy way to scroll through images rather than use right/left arrow or click and drag.

  • Cut and move image using mouse ?

    Hello,
    I am developing one paint program. I am making it similar to microsoft paint. In This paint, I want to use lasso, magic wand tool and select tool. But I am not too familiar with java. And want to do with your help. Please help on this topic. If lasso and magic wand tools behave same. Then please tell me about only select tool that will use for the purpose of select a particular area from canvas (canvas is drawing sheets that holds the drawing). Please help me.
    If there is any snippet of this above declaration please send. Can we use system clipboard to cut, move and paste for this drawing by the help of mouse. Please help me. I will really thankful to you.
    Thanks in advance.
    Manveer

    For the Magic Wand (at least for what I suppose it is) I would consider the image as a graph, where two pixels are connected if the difference between their color values is below some tolerance value. Then you can easily perform the iterative breadth-first algorithm to collect the pixels of the selection. I recently did something similar (although not on an image itself, but on some higher abstraction of it).
    For the Lasso i would collect all the pixels, the user selects, then calculate the bounding box over the selected pixel area and finally determine for each pixel inside the bounding box, that is no member of the lasso/selection pixels, whether it lies inside or outside the selection area. This could be accomplished by performing another bfs from one pixel, that includes all pixels besides the ones lying outside the bounding box or are pixels of the selection lasso.

  • How to make JPanel not to move when dragged using mouse

    hi guys,
    Can anyone tell me what method has to be called so that the JPanel doesn't move when someone tries to do by dragging the panel using a mouse.
    Thanks,
    Vishal j

    There is no built in support for dragging a panel with the mouse, so you must have custom code.
    So as the question is stated we aren't able to help you.
    If you need further help then you need to create a [url http://homepage1.nifty.com/algafield/sscce.html]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided.
    And don't forget to use the [url http://forum.java.sun.com/help.jspa?sec=formatting]Code Formatting Tags so the code retains its original formatting.

  • Cannot move Title Page using Noia 3.0.9 theme with OS X Lion; default theme is fine with FF 35

    I have disabled all extensions and plugins and tested both themes and only the default theme works, with or without extensions and plugins. Short of refreshing Firefox, any other ideas out there?

    I have refreshed Firefox and no change in behavior. I will pursue with Noia developer.

  • Beginners Q: Motion tracking - Cannot move trackpoint

    Hi all,
    this seems to be simple:  start motion tracking, move your trackpoint to the correct place that needs to be tracked.
    Problem:  I see the trackpoint, but cannot move it to its place.  
    The only way to do that, is to close AE, reopen AE & reopen the project, and continu moving the trackpoint.  
    This is only possible to do so for a few frames, then the trackpoint is fixed again, and moving is not possible anymore.
    This topic seems not to be found on the internet, so I suspect a bug maybe.
    Please help, it's driving me nuts... 
    any help is welcome...
    -Edit1-
    And as I saw an OpenGL error I'm providing also system info below.
    SW:
    AE CS6, trial version, no extra's installed. ver. 11.0.0.378
    Windows 7 Home Premium, SP1, build 7601, 64bit
    Driver pack ver. 8.98-120611a-141402C-ATI
    2D driver ver. 8.01.01.1253
    OpenGL ver. 6.14.10.11733
    Direct3D ver. 9.14.10.0920
    Catalyst Control Center Ver: 2012.0611.1251.21046
    Used Render Multiple Frames Simultaneously multiprocessing: With & Without. 
    HW:
    16Gb Ram
    i7-3770K CPU @3.5MHz, 64Bit
    Graph Chipset: AMD Radeon HD 6800 Series
    -Edit2-
    The more I mess around with it, the more I see the proof I need to restart AE to continue follow the same actions as in tutors over the net.
    VERY often, I cannot move object with the mouse cursor like text objects for instance.
    Is there anything I can do??

    Hi thx for replying,
    If I remember well, the error message was a general OpenGl one.
    I did have the error message not that often unfortunately.
    Graphic card is updated to latest version.
    It's very annoying I cannot drag&drop after a while...  

  • Select images using keywords and view slideshow...using what?

    I have a library full of jpeg images that were created either using the export command from LR or by editing in Br/Ps and then savedAs jpeg. Now I want to watch slideshows on my monitor (30" Apple HD Cinema Display). Now I have the following Dilemma:
    - I can start a Search Command in Bridge and narrow it down to exactly the images I want in my slide show. Then from the View menu select Slideshow. The IQ is terrible. True sharpness is only revealed when zooming in 100% but that's not the idea of a slide show.
    - I can also use Apple OS's (Tiger) built-in slide show and start it from the finder. That way I get high quality, fast dissolving slide shows, that are unfortunately limited to the first 100 images in the Finder view. However, in the Finder I cannot select my images using keywords and IPTC info.
    So could there be a simple solution to the problems I'm running into with Bridge?
    Or could there be a nice viewer for MacOS that features the search option I want and renders good images and dissolve option?
    Thanks.

    @Ann Shelbourne: Thanks for your reply. I'm hesitant to upgrade to CS4 at this point. That would mean my only option is to look for a jpeg viewer other than Adobe that can select images based on keywords and iptc data. Would you know one that does?
    @Ramon G Castaneda: I apologise for being an inexperienced forum visitor. I will take note of your advice and follow the posting instructions.
    I checked FAQ's both here and at Adobe, as well as the knowledge base. No results. I also searched the forum.
    My setup: MPB dual core Intel, 2GB RAM, 30GB free disk space. Adobe CS3, just updated to Bridge version 2.1.1.9. No improvement at all so far. According to Ann only CS4 will solve the problem.
    Thank you.

  • I am importing videos from my canon sl1 to my macbook when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item 'MVI_1040

    I am importing videos from my canon sl1 to my macbook air when i use iphoto is says "iPhoto cannot import your photos because there was a problem downloading an image." and when i use image capture it says "An error occured while importing. The item ‘MVI_1040'' Thanks in advance

    Can you access the images on the phone with Image Capture (in the Applications Folder) ?

Maybe you are looking for

  • How to change the default sql servery query name?

    Whenever we click on new query button, Sql server automatically opens a new query with default name SQLQuery1.sql. Can I change this default name? What I mean to say is I have to work with quite a number of databases on different servers. So I open m

  • Problems with parameterized custom tags - urgent

    Hi All, I am not able to retrieve my attribute values in Tag Support Class? it doesn't give any errors while compiling and also the tag works without those attributes. I am able to print some html using the same tag but not able to print the passed a

  • SAP report to see orders TECO with Details

    Hi All, I am looking for a sap report to see all the orders that have been TECO'ed by Date (Selection screen - Peroid From - To) & plant. I know i can use COOIS & CO26 but i need more details output report somthing like who done the TECO, Date and Ti

  • To install xi 3.0

    hi experts, i am planning to install xi 3.0 , so that j2sdk 1.4.217_ will work on that? or which version i have to use , give me some appropriate suggestions thank you

  • HFM Installation  Issue

    Hi, We have installed Foundation Services in Planning server and HFM in HFMserver(Giving the configuration details of Foundation services of Planning Server) When we openning Consolidation administration we aare getting below error. Description: Inva