From WikiChip
$didtok Identifier - mIRC
Commands & Identifiers
Basics
Events
Matching Tools
Data Storage
Control Structures
GUI Scripting
Sockets
Advanced Scripting
Additional Resources
Security
Other
$didtok returns a tokenized list of the item(s) of a dialog's combo, list, or edit box
Synopsis
$didtok(name,id,C)
Parameters
- name - Name of the dialog. Must be open
- id - The number of the dialog control
- C - ASCII value used to separate the returned tokens. 32 is space, 44 is comma, 9 is tab, 46 is period, etc.
Properties
None
Example
dialog sample1 { size -1 -1 200 200 option dbu combo 987,10 10 50 10, drop } on *:dialog:sample1:init:*:{ var %days Sunday Monday Tuesday Wednesday Thursday Friday Saturday didtok $dname 987 32 %days did -c $dname 987 $findtok(%days,$asctime($ctime,dddd),1,32) }
/dialog -ma sample1 sample1 //echo -a The items in the list are $didtok(sample1,987,10004) and the selected item is $did(sample1,987,10004).seltext The items in the list are Sunday✔Monday✔Tuesday✔Wednesday✔Thursday✔Friday✔Saturday and the selected item is Monday
Compatibility
Added: mIRC v5.7
Added on: 02 Feb 2000
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.