← Back to team overview

sikuli-driver team mailing list archive

Re: [Question #142657]: sikuli java programs with usage of special keys like TAB, ENTER

 

Question #142657 on Sikuli changed:
https://answers.launchpad.net/sikuli/+question/142657

    Status: Open => Solved

Ramesh confirmed that the question is solved:
I had to use ctrl mask - META Mask was not working. Any idea?
        
public void copy(Match stPt, Match endPt) throws FindFailed{
        	System.out.println("Copy starting...........");
            scr.dragDrop(stPt,endPt,0);
            scr.type(null,"c",java.awt.event.InputEvent.CTRL_MASK);
        	System.out.println("Copy ending...........");
}

With CTRL_MASK, copy is working.

-- 
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.