Search found 11 matches
- Fri Jan 12, 2007 4:19 pm
- Forum: Beginners
- Topic: Macro not recognizing keystrokes
- Replies: 3
- Views: 6512
Yes we are using the correct SetFocus. Here is the script we are using: Change Directory>C:\Program Files\Prophet 21\CommerceCenter 10.5 Run Program>C:\Program Files\Prophet 21\CommerceCenter 10.5\pxxi.exe Press Enter Wait>5 *************** **LOCATION 101 *************** Press Alt Send Character/Tex...
- Wed Jan 10, 2007 6:01 pm
- Forum: Beginners
- Topic: Macro not recognizing keystrokes
- Replies: 3
- Views: 6512
Macro not recognizing keystrokes
We are writing a macro for a Remote Desktop Session Apllication and it is not reading certain keystrokes. The Macro is not recognizing the following functions: Press ALT, Press CTRL, and Press TAB. When we type the script and run a preview the macro just skips over these functions. I have even tried...
- Tue Oct 17, 2006 8:38 pm
- Forum: General Discussion
- Topic: Macros Not Saving
- Replies: 6
- Views: 11054
answers
We are running Macro Scheduler 8.0
I just purchased the software recently so this is the only version I have ever used.
This problem has been occurring since we started using the software, although it seems to happen somewhat randomly.
I just purchased the software recently so this is the only version I have ever used.
This problem has been occurring since we started using the software, although it seems to happen somewhat randomly.
- Tue Oct 17, 2006 5:38 pm
- Forum: General Discussion
- Topic: Macros Not Saving
- Replies: 6
- Views: 11054
Macros Not Saving
I am having trouble with macros which seem to disappear or lose their schedule. I open macro scheduler, double click my macro, select the Run When tab and enter a time/select appropriate days. I clicked OK. The new time and schedule show up in the list of macros so everything looks good. When I have...
- Wed Oct 11, 2006 4:58 pm
- Forum: Beginners
- Topic: Yet another newbie date question
- Replies: 7
- Views: 8489
regional settings
Hey guys,
I just changed the regional settings and used midstr to get what I needed. That seemed to make everything very simple.
Thanks for your help!
I just changed the regional settings and used midstr to get what I needed. That seemed to make everything very simple.
Thanks for your help!
- Wed Oct 11, 2006 2:39 pm
- Forum: Beginners
- Topic: Yet another newbie date question
- Replies: 7
- Views: 8489
JRL - problem
I tried something like this originally but it still has a problem.
Lets take today for instance...
your script will make mm = 10/1/2006
when you say MidStr>mm,4,2,dy it = 1/ instead of 01
I guess I will do this but create an IF that says to concatenate a 0 in front of DD if it's less than 10.
Lets take today for instance...
your script will make mm = 10/1/2006
when you say MidStr>mm,4,2,dy it = 1/ instead of 01
I guess I will do this but create an IF that says to concatenate a 0 in front of DD if it's less than 10.
- Wed Oct 11, 2006 1:42 pm
- Forum: Beginners
- Topic: Yet another newbie date question
- Replies: 7
- Views: 8489
Yet another newbie date question
My needs: Get today's Date Subtract 10 days from current date Parse out 2 digit day, 2 digit month, and 2 digit year I can use GetDate and Sub to get the date 10 days ago. This causes problem w/ MidStr when I am trying to parse out the pieces since MidStr requires a positional starting point. The st...
- Fri Oct 06, 2006 8:51 pm
- Forum: Beginners
- Topic: Using subtract function with dates
- Replies: 2
- Views: 4874
Using subtract function with dates
I want to subtract 10 days from the current date. I execute the following commands: Day>the_day Sub>the_day,10 Since today is the 6th, it returns the value -4. The help file states that Sub can be used with dates or numbers. I would think it is smart enough to recognize the number or days in the mon...
- Wed Sep 06, 2006 3:39 pm
- Forum: Beginners
- Topic: Second newbie question
- Replies: 2
- Views: 4692
Second newbie question
I am trying to use the GetCheckBox function. The function keeps returning a -1 code indicating an error. I believe (but am not sure) this is because the object_caption contains the letters "Non" which is also a system word that turns the number lock on. When I ran the script in debugger, the "Non" a...
- Wed Sep 06, 2006 3:29 pm
- Forum: Beginners
- Topic: Newbie Date Parsing question
- Replies: 6
- Views: 8231
Thanks everyone
it worked perfect
- Tue Sep 05, 2006 9:00 pm
- Forum: Beginners
- Topic: Newbie Date Parsing question
- Replies: 6
- Views: 8231
Newbie Date Parsing question
I need to enter today's date in a field. The format is mm/dd/yy, but since the field on the application is set for mm/dd/yy format, I will only need to enter the actual numbers. For instance, if todays date was 12/24/2005, I would only need to send 122405 to the screen. The GetDate function returns ...