ive used the sample script provided and added the dll into the program directory
as soon as a i run the sample, it closes the app
Search found 9 matches
- Wed Dec 10, 2014 5:01 am
- Forum: Technical / Scripting
- Topic: Python code test from example help
- Replies: 4
- Views: 5036
- Wed Dec 10, 2014 3:32 am
- Forum: Technical / Scripting
- Topic: Reading ini files issues
- Replies: 10
- Views: 8319
Re: Reading ini files issues
thanks that works cheers
- Mon Dec 08, 2014 11:39 pm
- Forum: Technical / Scripting
- Topic: Reading ini files issues
- Replies: 10
- Views: 8319
Re: Reading ini files issues
I even tried to split the settings into x and y and still MoveMouse wont accept a variable
- Mon Dec 08, 2014 11:21 pm
- Forum: Technical / Scripting
- Topic: Reading ini files issues
- Replies: 10
- Views: 8319
Re: Reading ini files issues
i dont know why, but i recreated my scriptfile and my ini and started working anyway next problem ReadIniFile>%SCRIPT_DIR%\settings.ini,Buttons,march,strMarch Let>march=strMarch MouseMove>%march% INI File [Buttons] ; march button march=1200,780 Error in: INI Line: 6 - Missing parameters in function ...
- Mon Dec 08, 2014 11:44 am
- Forum: Technical / Scripting
- Topic: Reading ini files issues
- Replies: 10
- Views: 8319
Re: Reading ini files issues
uploaded the ini file as well as the screenshot of the path
running 14.2.01
running 14.2.01
- Mon Dec 08, 2014 9:20 am
- Forum: Technical / Scripting
- Topic: Reading ini files issues
- Replies: 10
- Views: 8319
Re: Reading ini files issues
neither worked This is literally my whole script - i was testing //Set IGNORESPACES to 1 to force script interpreter to ignore spaces. //If using IGNORESPACES quote strings in {" ... "} //Let>IGNORESPACES=1 ReadIniFile>c:\Upload\test.ini,{"Testing"},{"user"},strUserName Let>name=strUserName along wi...
- Sun Dec 07, 2014 11:12 pm
- Forum: Technical / Scripting
- Topic: Varaibles on Variables with Excel
- Replies: 3
- Views: 3297
Re: Varaibles on Variables with Excel
Its working
it doesnt work when i put this in the data
SMTPSendMail><email>,<server>,<from>,<name>,<Subject>,xlData_%count%_3,
but works if i name the variable first
Let>URL=xlData_%count%_3
SMTPSendMail><email>,<server>,<from>,<name>,<Subject>,%URL%,
it doesnt work when i put this in the data
SMTPSendMail><email>,<server>,<from>,<name>,<Subject>,xlData_%count%_3,
but works if i name the variable first
Let>URL=xlData_%count%_3
SMTPSendMail><email>,<server>,<from>,<name>,<Subject>,%URL%,
- Sun Dec 07, 2014 9:50 pm
- Forum: Technical / Scripting
- Topic: Reading ini files issues
- Replies: 10
- Views: 8319
Reading ini files issues
ReadIniFile>c:\Upload\test.ini,Testing,user,username
Let>name=username
test.ini looks like the following
[Testing]
user=Novalak
nothing in the code watch list, is blank name is not being populated
Am i doing something wrong
Let>name=username
test.ini looks like the following
[Testing]
user=Novalak
nothing in the code watch list, is blank name is not being populated
Am i doing something wrong
- Sun Dec 07, 2014 10:32 am
- Forum: Technical / Scripting
- Topic: Varaibles on Variables with Excel
- Replies: 3
- Views: 3297
Varaibles on Variables with Excel
Im having troubles calling a variable within a variable for instance, i look through some code with excel - once it hits a row which meets, i grab the line For example Input>Sheet,Sheet?,Sheet1 Let>Excel=C:\Upload\Test.xls XLSheetToArray>%Excel%,%Sheet1%,xlData <LOOP CODE> Let>URL=xlData_%count%_3 S...