Based on the spy--.pl in the eg directory of the distributions I started to write a bit more roboust spy program that later on I'll check in the repository. I...
525
Eyeless Devil
gothposer
Jul 17, 2004 3:06 pm
... When I tried this, a 2nd dialogue came up without executing the app. After looking at the help for START, I noticed that the first param is a title string....
526
Gabor Szabo
gabor529
Jul 18, 2004 1:51 pm
I am going over the examples in the eg directory of the distribution and encountered a couple of things that are not working on my XP. I'd like to fix them but...
527
coolrobd
Jul 19, 2004 12:38 pm
Let me start by explaining what I am trying to achieve. Basically the Quake engine has a console window that sits behind it, I believe this to be a child...
528
coolrobd
Jul 19, 2004 12:38 pm
That is all well and good but if you where typing in the main window and it was disabled, surely it would stop taking input from the keyboard therefore loosing...
529
Gabor Szabo
gabor529
Jul 19, 2004 12:45 pm
... for more readability you might want to use qq() or q() for this my @args = ("start", q(""), q("C:92;Documents and Settings\setup.exe")); (beware, I have not...
530
coolrobd
Jul 19, 2004 12:45 pm
Got a problem, trying to do something quite different. I have a quake based game and it has a console. I am able to write to the window but think its the...
531
Chris Hilton
chris_hilton
Jul 19, 2004 3:45 pm
Use Sys::CPU from CPAN. Chris Hilton ... From: chris.johnson@... [mailto:chris.johnson@...] Sent: Friday, 16 July, 2004 10:03 To:...
532
Chris Hilton
chris_hilton
Jul 19, 2004 3:50 pm
The following link has some code that was posted to the list some time ago; don't know if it works, though. You would need to add the code to guitest.xs and...
533
Chris Hilton
chris_hilton
Jul 19, 2004 3:57 pm
I'm fairly positive you'll need Visual Studio with Visual C++ to compile; I don't think there's any way the .NET SDK will cut it. Chris Hilton ... From: Gabor...
534
Chris Hilton
chris_hilton
Jul 19, 2004 4:16 pm
You might try splitting your message into individual keypresses and set the foreground window (or focus window?) before sending each key. Something like the...
535
McMahon, Chris
cmcmahonloronix
Jul 20, 2004 11:15 am
Yoni ben-shlosh said: ################################## i wanted to know if anyone knows of a way to automate TN3270 and/or Tandem telnets (Tandem is...
536
Coleman Tom
tom_g_coleman
Jul 20, 2004 11:15 am
another option is to send the low level window's message this is kind of hacking into the operating system, it would bypass the actuall key press and what...
537
Gabor Szabo
gabor529
Jul 20, 2004 11:15 am
Thanks for the answers. In the meantime, with the help of Google and other mailing lists[1] I could already compile the C++ code. I still have to clean my...
538
coolrobd
Jul 20, 2004 11:15 am
I have been looking a bit more into it and think SendMessage is even more reliable, anyone used this API function before? ... set the ... Something like ... ...
539
coolrobd
Jul 20, 2004 2:54 pm
SendMessage is definately the way to go I feel, but how do you pass a letter using SendMessage, any syntax would be appreciated. I know you can only send one...
540
Chris Hilton
chris_hilton
Jul 20, 2004 4:04 pm
I thought about suggesting this before, but it's a good bit more complicated. Trying to keep it as simple as possible, I believe it would be something like...
541
coolrobd
Jul 21, 2004 9:27 am
Naerly there I think - Just can't get then SendMessage to work. Do I need to setup the WM_KEYDOWN? Also getVirtialKey does not work - just wondering if you...
542
coolrobd
Jul 21, 2004 9:27 am
Would it be possible to change this command so a windowhandle could be specified. This would be a great piece of functionality. Thanks, Rob...
543
Chris Hilton
chris_hilton
Jul 21, 2004 4:04 pm
Yeah, that's what I meant by "getVirtualKey() and looking up the constant values left as exercises for the reader". You'll need to write getVirtualKey() to...
544
shirley.luo@...
Jul 23, 2004 3:23 pm
Hi, I would like to read content of VB spread control(show up as SPR32x30_SpreadSheet in Spy window), but don't know how. Any help will be appreciated. ...
545
Gabor Szabo
gabor529
Aug 2, 2004 11:58 am
... After looking at the source and the MSDN documentation my understanding is that you can only send ketboard events to the window which currently has the...
546
coolrobd
Aug 2, 2004 12:00 pm
Back to basic's I am afraid, I have looked into it and just can't figure it out, it just will not work, so now trying to get the calculator to accept keys,...
547
xzx_xstephx_xzx
Aug 2, 2004 12:01 pm
Hello, I would like to use the RawKey code (VK_*) with the IsKeyPressed function, is it possible ? I'd like to be able to use it because I can't use my numeric...
548
Yaron
yaronkretchmer
Aug 2, 2004 12:01 pm
Hi All I'm trying to automate the running of a windows-based program and since I'm an experienced PERL user, I thought I'd give GUITEST a try. My problem is...
549
coolrobd
Aug 2, 2004 12:01 pm
I have now master the use of SendMessage and PostMessage with regards the sending of text to a window. When you know how it is very simple! I could either...
550
Chris Hilton
chris_hilton
Aug 2, 2004 3:52 pm
You might want to download the latest zip package from the Files area of this Yahoo! group and look at the examples in the eg directory. 1) Identify window ...
551
Peter G. Martin
scribepeterm
Aug 4, 2004 9:37 am
... No mouse clicks, but here's a routine I'm using with FrameMaker which adds filenames to a FrameMaker book. use Win32::Process; use Win32::GuiTest ':ALL'; ...
552
Nagarajan M
naga_cit
Aug 11, 2004 12:08 pm
Hi All, I have few basic questions on Perl GUI Test module. 1. What does the SendRawKey? What is the differnce between sendkeys and sendrawkey? 2. Whats the...
553
coolrobd
Aug 13, 2004 5:17 pm
Hi, First question I'll let the experts answer. Second quesion on the other hand I am more than qualified to answer. SendMessage sends commands to a window via...