Hi,
Anyone knows if its possible to create an 'Input' function that doesn't wait for input?
So it can be used inside a loop, and not lock the application up.
Here's how it is now, the Input functions makes the application wait for you to enter something and press Enter.
(Compile without the 'Build GUI App' option, and don't run in output tab. )
This is how I want it to work, but with the functionality of being able to input while it updates.
(Compile without the 'Build GUI App' option, and don't run in output tab. )
Hope it makes sense,
Thanks :)
Anyone knows if its possible to create an 'Input' function that doesn't wait for input?
So it can be used inside a loop, and not lock the application up.
Here's how it is now, the Input functions makes the application wait for you to enter something and press Enter.
Print "Input Test" Repeat Print Input( "Command> " ) Print "Update" Forever
(Compile without the 'Build GUI App' option, and don't run in output tab. )
This is how I want it to work, but with the functionality of being able to input while it updates.
Print "Input Test" Repeat Delay 500 Print "Update" Forever
(Compile without the 'Build GUI App' option, and don't run in output tab. )
Hope it makes sense,
Thanks :)