Custom Query

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (313 - 315 of 3901)

Ticket Resolution Summary Owner Reporter
#1733 Rejected IsEmpty function Jon josh_petitt@…
Description

Hello,

Here is a function I find helpful:





; Returns True if value is "empty" (i.e. exists, but no data).
Func IsEmpty($value = '')
	Select
		Case IsString($value)
			Return $value == ''

		Case IsArray($value)
			Return UBound($value) = 0

		Case IsNumber($value) Or IsBinary($value) Or IsPtr($value)
			Return $value = 0

		Case IsBool($value)
			Return $value = False

		Case True
			Return $value ; if don't know the object type, just pass it on
	EndSelect
EndFunc   ;==>IsEmpty




It is just a suggestion, thanks!

#1736 No Bug Send keystroke don't works ont locked windows session Jon sliding4living@…
Description

Hello, My script is not continue when the user Windows session is locked. However the script works perfectly in normal windows session.

My script is using between other instructions: WinWaitActive("PDFCreator 0.9.5")

ControlClick("PDFCreator 0.9.5", "", "[CLASS:ThunderRT6CommandButton; INSTANCE:7]")

Send($nompdf)

Is there a tierce tool which can launch a task to 1)logon user windows session 2)run the autoitscript until the end 3)lock user windows session (Key Windows L) It would be good to do it working even if the windows session is locked.On future release of Autoit, It would be perfect that all works on windows locked user session.

#1737 Rejected gui enhancements for touch screens Jon anonymous
Description

Touch screen support including multi-touch would be a nice addition!

Note: See TracQuery for help on using queries.