Search found 536 matches

by Rain
Wed Sep 11, 2013 2:08 pm
Forum: Enhancement Suggestions
Topic: [Done] HTML/CSS elements in Custom Dialogs
Replies: 20
Views: 26808

Here is an example that will get some of your system info, write the info to an HTA file and display them inside a dialog. I hope this will point you in the right direction or give you some ideas. Dialog>Dialog1 object Dialog1: TForm Left = 247 Top = 96 HelpContext = 5000 BorderIcons = [biSystemMenu...
by Rain
Wed Sep 11, 2013 1:09 pm
Forum: Enhancement Suggestions
Topic: [Done] HTML/CSS elements in Custom Dialogs
Replies: 20
Views: 26808

The HTA will not run macro scheduler codes...instead use VBScript or Javascript inside the HTA if you want it to handle dynamic codes. Google Free Javascript Examples OR Free VBscript Examples I personally would use an HTA to display results created by a macro. Isn't that what you were looking for, ...
by Rain
Tue Sep 10, 2013 10:03 pm
Forum: Enhancement Suggestions
Topic: [Done] HTML/CSS elements in Custom Dialogs
Replies: 20
Views: 26808

Thanks for showing this Rain. Will use it for now... it involves writing a ".hta"-file to a temp folder which is not what I'd like but it'll do for now. Thanks again Rain for helping me. :) You're welcome. You can create the HTA file in any directory you want just replace %TEMP_DIR% with the direct...
by Rain
Tue Sep 10, 2013 3:09 pm
Forum: Enhancement Suggestions
Topic: [Done] HTML/CSS elements in Custom Dialogs
Replies: 20
Views: 26808

I'm hammering away on this subject: If this is ever implemented it would be great if the Message> , MessageModal> , Ask> and Input> would be HTML enabled. Alot of time I use these to inform users about errors and or update information etc. etc. and today they are really gray... It would be awesome ...
by Rain
Mon Sep 09, 2013 2:53 pm
Forum: Technical / Scripting
Topic: Days Incremented/Decremented from TimeAdd
Replies: 3
Views: 3716

You're welcome. I'm always glad to help when I can.
by Rain
Mon Sep 09, 2013 1:45 pm
Forum: Technical / Scripting
Topic: Days Incremented/Decremented from TimeAdd
Replies: 3
Views: 3716

Hi armsys, I agree, it would be a lot easier to combine both date and time into one command. I know you don't like VBScript but it's the only solution I have found that can do what you're looking for. varDate does not require a date and time...you can Add/Subtract from a date or time only. Let>varDa...
by Rain
Sun Sep 08, 2013 2:30 pm
Forum: Technical / Scripting
Topic: FIP ---> how to run the script faster? :)
Replies: 12
Views: 9195

The computer hardware has a lot to do with how fast Macro Scheduler scans the area you tell it to. You've done the right thing by reducing the size of the rectangle...the smaller the rectangle the faster Macro Scheduler can complete the scan. A couple of things you may want to try: 1. Add a wait per...
by Rain
Sun Sep 08, 2013 2:11 pm
Forum: Technical / Scripting
Topic: Im new here and id like some help
Replies: 24
Views: 15590

One more thing you can try that I just thought about is the LibFunc command to move the cursor. I can't test it since I no longer have the game installed. Here is the LibFunction example to move the cursor. //X position of the cursor Let>xPos=100 //Y position of the cursor Let>yPos=200 //Move the cu...
by Rain
Sat Sep 07, 2013 3:34 pm
Forum: Technical / Scripting
Topic: Im new here and id like some help
Replies: 24
Views: 15590

Looks like the game requires actual human interaction with the mouse. I've logged the cursor positions and they were exactly as programmed while the game cursor kept moving up. By the way, image recognition is a no-go...I've tried it. //Start the script and maximize the game Wait>10 label>start Mous...
by Rain
Sat Sep 07, 2013 1:11 am
Forum: Technical / Scripting
Topic: Im new here and id like some help
Replies: 24
Views: 15590

I've replied to your PM.
by Rain
Sat Sep 07, 2013 12:46 am
Forum: Technical / Scripting
Topic: Im new here and id like some help
Replies: 24
Views: 15590

I will have a look tomorrow and try to point you in the right direction. Can you send me a PM with instruction? By the way I'm not able to verify my account at the link you provided. Error: "textActivateFailed" You can click on this link http://www.mjtnet.com/forum/privmsg.php?mode=post&u=701 or the...
by Rain
Sat Sep 07, 2013 12:33 am
Forum: Technical / Scripting
Topic: Im new here and id like some help
Replies: 24
Views: 15590

I've installed the game to see for myself but it's not letting me create an account. The error returned: "DB Error: connect failed"
by Rain
Sat Sep 07, 2013 12:15 am
Forum: Technical / Scripting
Topic: Bug ##EOF##
Replies: 2
Views: 3335

I can see a number of problems with your code. 1. While>linec:\temp\test.txt,k,line should be While>line##EOF## 2. If>lineline should be If>line##EOF## 3. ReadLn command is missing. Here is a working example Let>k=1 While>line<>##EOF## ReadLn>c:\temp\test.txt,k,line If>line<>##EOF## mdl>line Endif L...
by Rain
Sat Sep 07, 2013 12:02 am
Forum: Technical / Scripting
Topic: Im new here and id like some help
Replies: 24
Views: 15590

Have you tried LDblClick? label>start MouseMove>320,240 Wait>1.00 LDblClick Wait>1.00 MouseMove>420,240 LDblClick Wait>1.00 MouseMove>520,240 LDblClick Wait>1.00 MouseMove>620,240 LDblClick Wait>3.22 MouseMove>180,240 LClick Wait>5.28 Goto>start I don't see how the mouse can move up with the way you...
by Rain
Sat Aug 31, 2013 5:06 pm
Forum: Beginners
Topic: Closing FTP connection
Replies: 4
Views: 6039

Hi jsmyong55, I hope this points you in the right direction. Dialog>Dialog1 object Dialog1: TForm Left = 315 Top = 123 HelpContext = 5000 BorderIcons = [biSystemMenu] Caption = 'CustomDialog' ClientHeight = 81 ClientWidth = 295 Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color = clWindowTe...
Sign up to our newsletter for free automation tips, tricks & discounts