Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
RE: FW: [platform-swt-dev] Simulate a KeyPress Event

I've actually posted the event. Its just missing in the snippet I sent.
		    
                Event event = new Event();

                event.keyCode=SWT.PRINT_SCREEN;

                event.display=Display.getDefault();

                event.type=SWT.KeyDown;
		    
                Display.getDefault().post(event);
 
                Clipboard clipboard = new
Clipboard(Display.getDefault());

                ImageTransfer imageTransfer =
ImageTransfer.getInstance();

                Object obj = clipboard.getContents(imageTransfer


Thanks & Regards,
Mani

-----Original Message-----
From: platform-swt-dev-bounces@xxxxxxxxxxx
[mailto:platform-swt-dev-bounces@xxxxxxxxxxx] On Behalf Of David
Whiteman
Sent: Friday, July 07, 2006 11:14 AM
To: Eclipse Platform SWT component developers list.
Subject: Re: FW: [platform-swt-dev] Simulate a KeyPress Event

Friday, July 7, 2006, 11:08:46 AM, Chandra, Mani wrote:

> Anybody who can help me on this?

For one thing, you created the Event object but you didn't
actually post it.

-- 
Regards,
David                            
mailto:dlwhiteman@xxxxxxxxxxxxxxx
news://news.eclipse.org/eclipse.platform.swt
http://www.eclipse.org/newsportal/thread.php?group=eclipse.platform.swt


_______________________________________________
platform-swt-dev mailing list
platform-swt-dev@xxxxxxxxxxx
https://dev.eclipse.org/mailman/listinfo/platform-swt-dev


Back to the top