Search found 165 matches

by TXShooter
09 Jan 2019, 18:49
Forum: Ask for Help (v1)
Topic: Is it possible to create a wrapper for uploading to CloudApp? Topic is solved
Replies: 21
Views: 4439

Is it possible to create a wrapper for uploading to CloudApp? Topic is solved

I've never dealt with html scraping, and I really don't want to go down that path if I don't have to, but is it possible to create something that can upload to CloudApp, hopefully without using a browser?

I found this, but I don't know how to use that language.
by TXShooter
19 Dec 2018, 14:48
Forum: Ask for Help (v1)
Topic: Is there a better way? (Process, Exist, Some.exe) Topic is solved
Replies: 5
Views: 1191

Re: Is there a better way? (Process, Exist, Some.exe) Topic is solved

#Persistent SetTimer, terminate_secondary_program, 500 return terminate_secondary_program: Process, Exist, primary_program.exe If (ErrorLevel = 0) ; is not running return ; do nothing ; otherwise: Process, WaitClose, primary_program.exe run, %comspec% /k taskkill /F /IM secondary_program.exe && exi...
by TXShooter
18 Dec 2018, 18:48
Forum: Ask for Help (v1)
Topic: Is there a better way? (Process, Exist, Some.exe) Topic is solved
Replies: 5
Views: 1191

Re: Is there a better way? (Process, Exist, Some.exe) Topic is solved

Or this: Process, Wait, Some.exe run, %comspec% /k taskkill /F /IM Some.exe && exit,, Hide ExitApp I forgot to mention that this is a 'watchdog' service that I use to kill an app that launches with another app. Once its launched, the only two ways to exit it is either for it to finish its task, or ...
by TXShooter
18 Dec 2018, 08:05
Forum: Ask for Help (v1)
Topic: Is there a better way? (Process, Exist, Some.exe) Topic is solved
Replies: 5
Views: 1191

Is there a better way? (Process, Exist, Some.exe) Topic is solved

Is there a better, less-processor-intense way of monitoring for a running process than:

Code: Select all

Loop {
	Process, Exist, Some.exe
		If (ErrorLevel > 0) {
			run,%comspec% /k taskkill /F /IM Some.exe && exit,, Hide
		ExitApp
		} 
	}
by TXShooter
12 Dec 2018, 22:45
Forum: Ask for Help (v1)
Topic: Com Object Throws Error for Extension on Win7, but not Win10
Replies: 6
Views: 1405

Re: Com Object Throws Error for Extension on Win7, but not Win10

Still having this issue and still scratching my head.

Anyone have any other thoughts?
by TXShooter
05 Dec 2018, 14:02
Forum: Ask for Help (v1)
Topic: FileExist not working or I'm doing something wrong? Topic is solved
Replies: 6
Views: 1360

Re: FileExist not working or I'm doing something wrong? Topic is solved

jeeswg wrote:
05 Dec 2018, 13:59
8234 202A ‪ LEFT-TO-RIGHT EMBEDDING
I'm using Notepad++ with UTF-8 encoding. How would, or even COULD that have happened?
by TXShooter
05 Dec 2018, 14:01
Forum: Ask for Help (v1)
Topic: FileExist not working or I'm doing something wrong? Topic is solved
Replies: 6
Views: 1360

Re: FileExist not working or I'm doing something wrong? Topic is solved

Looks like you have an extra character in your file path. When I copied the code into my editor I spotted the special character. Copy the example code you posted to the clipboard then run this: Loop, Parse, Clipboard { s .= A_LoopField "-" Ord(A_LoopField) "`n" } MsgBox % s Result: -9 I-73 f-102 -3...
by TXShooter
05 Dec 2018, 12:41
Forum: Ask for Help (v1)
Topic: FileExist not working or I'm doing something wrong? Topic is solved
Replies: 6
Views: 1360

FileExist not working or I'm doing something wrong? Topic is solved

I can't for the life of me figure out why this isn't working. The file exists, and I have even copied from the Properties | Security tab the full path to the file and put that in the script... it just won't display "File Found 0"... only "File Not Found 0". If FileExist("‪C:\Temp\HB.RDI") { MsgBox F...
by TXShooter
21 Oct 2018, 17:47
Forum: Ask for Help (v1)
Topic: Is there a means of validating a ControlSetText command?
Replies: 7
Views: 1306

Re: Is there a means of validating a ControlSetText command?

I've never had any problems with ControlSetText, so I'm wondering if this is really the solution to your problem, however, here's a custom function. q:: ControlGetText, vText, Edit1, A if (vText = "") MsgBox, % MyControlSetText("abc", "Edit1", "A") return MyControlSetText(vText, vControl:="", vWinT...
by TXShooter
21 Oct 2018, 10:35
Forum: Ask for Help (v1)
Topic: Add CR/NL to Email Body from INIREAD Variable
Replies: 0
Views: 588

Add CR/NL to Email Body from INIREAD Variable

I'm currently having to encode my email body within the script, and I would like to move it to an INI file, but the carriage returns and new lines for an IMAP object are a little illusive for me to grasp. I was hoping a guru or 20 here might help me out. Current setup: [Email] CongregationalEmailGre...
by TXShooter
20 Oct 2018, 19:44
Forum: Ask for Help (v1)
Topic: Is there a means of validating a ControlSetText command?
Replies: 7
Views: 1306

Re: Is there a means of validating a ControlSetText command?

jeeswg wrote:
19 Oct 2018, 19:39
I would just use ControlGetText to check, or create a custom ControlSetText function that used ControlGetText to check.
Ok, now you're just teasing me. lol. How does one go about creating a custom ControlSetText function?
by TXShooter
19 Oct 2018, 19:07
Forum: Ask for Help (v1)
Topic: Is there a means of validating a ControlSetText command?
Replies: 7
Views: 1306

Re: Is there a means of validating a ControlSetText command?

jeeswg wrote:
19 Oct 2018, 11:39

Code: Select all

while (WinExist("Child Window") && (bState<>cCommand vValue)) {
Cheers.
Jeeswg,
Thank you! That does help.

Would it be a good idea to add a feature request that validates ControlSetText as complete before continuing, or has that already been done and we're waiting?
by TXShooter
19 Oct 2018, 09:33
Forum: Ask for Help (v1)
Topic: Is there a means of validating a ControlSetText command?
Replies: 7
Views: 1306

Is there a means of validating a ControlSetText command?

I'm having random lag and not-in-focus problems that I am trying to circumvent without the use of a 'Sleep' command as I'm trying to speed things up in my script, and I would rather just simply use a 'validate entry' feature instead. I thought of using While loops to confirm an entry has indeed been...
by TXShooter
12 Oct 2018, 15:48
Forum: Ask for Help (v1)
Topic: dll calls again....
Replies: 5
Views: 1193

Re: dll calls again....

wdmodlin wrote:It works. But as I said, it does not support the UDP connectionless model properly.
Did you ever get this sorted out?

I'm trying to find a listener to Behringer's X32 Compact which uses a form of Open Sound Control (OSC), and parse specific events to control my script.
by TXShooter
06 Oct 2018, 11:05
Forum: Ask for Help (v1)
Topic: Control, Check,, ButtonX, ; problem Topic is solved
Replies: 3
Views: 805

Re: Control, Check,, ButtonX, ; problem Topic is solved

I guess that I will just have to add a 20 second delay. Thanks for all the help.
by TXShooter
02 Oct 2018, 21:25
Forum: Ask for Help (v1)
Topic: Control, Check,, ButtonX, ; problem Topic is solved
Replies: 3
Views: 805

Re: Control, Check,, ButtonX, ; problem Topic is solved

I'm needing to come back to this thread because there's still something not right with Button (checkbox) selection between these two computers. If I use ControlGetText on the Windows 10 machine to identify the control's ID, all works like it should. But, on my Windows 7 machine... well, I am having ...
by TXShooter
30 Sep 2018, 16:40
Forum: Ask for Help (v1)
Topic: Com Object Throws Error for Extension on Win7, but not Win10
Replies: 6
Views: 1405

Re: Com Object Throws Error for Extension on Win7, but not Win10

I don't know what the problem is, but I noticed: Global DatabaseFilename := "%OneDriveFolder%\Media Ministry\Master Disc List.xlsx" ;should probably be: global DatabaseFilename := OneDriveFolder "\Media Ministry\Master Disc List.xlsx" Thanks, jeeswg. I'm not sure if that applies as this script work...
by TXShooter
30 Sep 2018, 14:45
Forum: Ask for Help (v1)
Topic: Com Object Throws Error for Extension on Win7, but not Win10
Replies: 6
Views: 1405

Re: Com Object Throws Error for Extension on Win7, but not Win10

System registry has .xlsx registered like it would be in this 'solution' , and double clicking on the file opens in Excel. I even tried to relocate the file to the desktop just to see if the OneDrive folder was an issue... no joy. I suppose that I could stick with the .xls version, but then I would ...

Go to advanced search