Could you provide a small example code?
Quote: "My program works fine until I use either the Open file dialog or save file dialog commands, then the next time I click the mouse ie left click(which will return 1 in mouseclick()), mouseclick() will still return 1 even when the mouse button is not being pressed."
I'm not quite sure if I understand the problem correctly.
For instance, this code works just fine for me:
sync on
sync rate 0
sync
do
cls
print "Click: ", mouseclick()
print "Press Space to select a file"
if spacekey()
tmp$ = opendialog("Select a File", "All Files (*.*)|*.*")
endif
sync
loop
But I believe opendialog is a BlueGUI command. Not sure where "open file dialog" comes from, the command doesn't highlight in my IDE and it doesn't compile either, so maybe it's just a problem of whatever plugin is responsible.