When I open LiveCode (Mac 6.5.0) it opens in pointer tool. I want it to open with browse tool as default. I have a stack where I say in OpenStack:
answer the tool
choose browse tool
answer the tool
It shows browse tool for both dialog boxes, but pointer tool is chosen after the script. When I choose browse tool via msg box, it works correctly. I have tried locking screen before and after choosing browse tool but no effect.
"Choose browse tool" not working
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: "Choose browse tool" not working
Hi Kaveh1000,
I tried creating a blank stack with your script and all is working as expected
This could be a bug in the version of LiveCode you are using as 6.5.0 is quite old now. Please update to the latest stable version of LiveCode (6.6.2) and try your script again.
Kind Regards,
Neil Roger
--
LiveCode Support Team ~ http://www.livecode.com
—
I tried creating a blank stack with your script and all is working as expected
This could be a bug in the version of LiveCode you are using as 6.5.0 is quite old now. Please update to the latest stable version of LiveCode (6.6.2) and try your script again.
Kind Regards,
Neil Roger
--
LiveCode Support Team ~ http://www.livecode.com
—
Re: "Choose browse tool" not working
Hi Neil
Thank you very much for trying this out. I have upgraded to the latest community version. Strange that when I checked in preferences/updates, it said no updates found...
A pleasant surprise is that it seems retina display is supported in the script editor.
I tried the browse handler in a new stack and it works too, but strangely not in the older stack. I will play around and for now no big deal.
Do you know how I can set LiveCode to open with browse tool? Right now, even if I close the application with browse tool selected, it reopens with pointer...
Thank you very much for trying this out. I have upgraded to the latest community version. Strange that when I checked in preferences/updates, it said no updates found...
A pleasant surprise is that it seems retina display is supported in the script editor.

I tried the browse handler in a new stack and it works too, but strangely not in the older stack. I will play around and for now no big deal.
Do you know how I can set LiveCode to open with browse tool? Right now, even if I close the application with browse tool selected, it reopens with pointer...
Kaveh
Re: "Choose browse tool" not working
Hi kaveh1000,
Best regards
Jean-Marc
You can use:how I can set LiveCode to open with browse tool?
Code: Select all
on preOpenStack
choose browse tool
end preOpenStack
Jean-Marc
https://alternatic.ch
Re: "Choose browse tool" not working
you can also use jmburnods script in a stack that you save to the plugins folder, and set it to open when livecode starts (invisible) , and as part of the script, have it close itself. That way, LC will open, the script will run, choosing the browse tool, then it'll go away. (might put the script on preopencard instead, or even opencard so that LC is far enough along for the browse tool command to work reliably)