K... I am missing a few functional commands I'm used to using while scripting.
I need a command to cause the host of my script to refresh itself without waiting for the script to end... VB implements this with the DoEvents command, and might be used like this:
For X = 1 To 100
World.Send "Test " & X
' K... The text we just send won't be received until
' the script ends. Then all the tests will be sent at
' the SAME TIME. Let's update the host application:
DoEvents
Next X
-- Thanks
I need a command to cause my scripts to delay... My delay routine is not very good, because writing timers through scripts is VERY unreliable. zMud --I know, that's a competitor, and everyone compares to zMud, but hey-- implements this feature through the #WAIT command
#REPEAT 100 {
Test %i
#WAIT 1000
}
-- Thanks again
I would really like to control menu items and status bars through my script. With the script controls you can easily add any object you like, including the script control itself. If you could add your menus or other parts of the interface that are object based, I would greatly appreciate it. (PS. A simple list of any properties and methods supported by those objects would be nice. )
Umm.... Thanks for reading this... If you got this far, I owe you a coke.
Thanks for listening
--Rire
I need a command to cause the host of my script to refresh itself without waiting for the script to end... VB implements this with the DoEvents command, and might be used like this:
For X = 1 To 100
World.Send "Test " & X
' K... The text we just send won't be received until
' the script ends. Then all the tests will be sent at
' the SAME TIME. Let's update the host application:
DoEvents
Next X
-- Thanks
I need a command to cause my scripts to delay... My delay routine is not very good, because writing timers through scripts is VERY unreliable. zMud --I know, that's a competitor, and everyone compares to zMud, but hey-- implements this feature through the #WAIT command
#REPEAT 100 {
Test %i
#WAIT 1000
}
-- Thanks again
I would really like to control menu items and status bars through my script. With the script controls you can easily add any object you like, including the script control itself. If you could add your menus or other parts of the interface that are object based, I would greatly appreciate it. (PS. A simple list of any properties and methods supported by those objects would be nice. )
Umm.... Thanks for reading this... If you got this far, I owe you a coke.
Thanks for listening
--Rire