|

ResultVariable


When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.


See also: Related Actions


image

image

StatusDlg.SetAutoSize

OverviewExamples

StatusDlg.SetAutoSize ( boolean AutoSize )


De s cr ip t ion


Sets whether or not the built-in status dialog will automatically resize when its settings change.


P arame t er s


AutoSize


(boolean) Whether or not the status dialog will automatically resize when its settings change:



VALUE DESCRIPTION


true


The status dialog will automatically resize.


false


The status dialog will not resize.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

StatusDlg.SetCancelled

OverviewExamples

StatusDlg.SetCancelled ( boolean Cancelled )


De s cr ip t ion


Sets the clicked/unclicked state of the cancel button on the built-in status dialog.


Note: This affects the value that is returned by the StatusDlg.IsCancelled action.


image

P arame t er s


Cancelled


(boolean) Whether or not the cancel button was clicked:



VALUE DESCRIPTION


true


The button was clicked.


false


The button was not clicked. (Even if it was, just pretend that it wasn't.)


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

StatusDlg.SetMessage

OverviewExamples

StatusDlg.SetMessage ( string Text )


De s cr ip t ion


Sets the main description message on the built-in status dialog.


P arame t er s


Text


(string) The text you want to display.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

StatusDlg.SetMeterPos

OverviewExamples

StatusDlg.SetMeterPos ( number Position )


De s cr ip t ion


Sets the status meter position on the built-in status dialog.


P arame t er s


Position


(number) The status meter position to set.


image

Note: This position must be within the range defined in the StatusDlg.SetMeterRange action. If no range is defined, a default of 0-100 is used.


Re t u r n s


Nothing. You can use Application.GetLastError to determine whether this action failed, and why.


See also: Related Actions


image

image

StatusDlg.SetMeterRange

OverviewExamples

StatusDlg.SetMeterRange ( number Begin,


number End )


De s cr ip t ion


Sets the range of the built-in status dialog's status meter.


P arame t er s


Begin


(number) The beginning of the range.


Note: This must be a value greater than, or equal to 0.


image

|