Project Browser
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Project Browser
I am trying to get my Project Browser to only list the stacks that are being currently used (are loaded into memory). I do not want a whole list of all of the extensions and their stacks, etc. It is confusing to me at this point to try to wade through them when I am not using them.
In the User Guide, I have looked for info on the Project Browser. Pg 477 of the LiveCode 9.5.1 User Guide is about the Tools Menu and it says "For more details, see the section on the Project Browser." But I cannot even seem to find a section for the Project Browser in the User Guide.
I have found Preferences and I have a choice for the Project Browser to show sections: Front Scripts, Stacks, Back scripts and Stacks in use. I don't yet know what front scripts and back scripts are but that isn't the point here. If I choose "Stacks" I see the whole list of extensions, etc. But if I do not select Stacks and only choose "Stacks in Use", I assume that if I only have one stack in memory, that it will show up, alone, in the list. However, even the stack that is open does not show up for me. Please tell me what I need to do to list only the stack(s) that I am currently working with or rather loaded into memory.
BTW, I hit the button to "Reset All Preferences to Defaults" and this did not help either.
Oh yes, one other thing in the Preference list. What is the Application Browser vs the Project Broswer.
Thank you,
Linda
In the User Guide, I have looked for info on the Project Browser. Pg 477 of the LiveCode 9.5.1 User Guide is about the Tools Menu and it says "For more details, see the section on the Project Browser." But I cannot even seem to find a section for the Project Browser in the User Guide.
I have found Preferences and I have a choice for the Project Browser to show sections: Front Scripts, Stacks, Back scripts and Stacks in use. I don't yet know what front scripts and back scripts are but that isn't the point here. If I choose "Stacks" I see the whole list of extensions, etc. But if I do not select Stacks and only choose "Stacks in Use", I assume that if I only have one stack in memory, that it will show up, alone, in the list. However, even the stack that is open does not show up for me. Please tell me what I need to do to list only the stack(s) that I am currently working with or rather loaded into memory.
BTW, I hit the button to "Reset All Preferences to Defaults" and this did not help either.
Oh yes, one other thing in the Preference list. What is the Application Browser vs the Project Broswer.
Thank you,
Linda
-
- Livecode Opensource Backer
- Posts: 10099
- Joined: Fri Feb 19, 2010 10:17 am
Re: Project Browser
Go to the Preferences and deselect this:
-
-
-
- Livecode Opensource Backer
- Posts: 10099
- Joined: Fri Feb 19, 2010 10:17 am
Re: Project Browser
The Application Browser is basically an older version of the Project Browser:
- -
You can open it under the Development/Plugins menu.
Personally I prefer it.
- -
You can open it under the Development/Plugins menu.
Personally I prefer it.
Re: Project Browser
Thanks, Richmond. But, see the image below. It is unselected and yet they still appear.
LindaRe: Project Browser
They appear in that stack too...
Re: Project Browser
Looks like a job for Monte. Those are extensions and *should* not be appearing in either of the browsers if you have that unselected.
It's also a simple fix - here's the appropriate revLoadLibrary from the JSON library livecodescript file - setting the _ideoverride when the library loads is the way to tell the system to treat it like an IDE stack:
It's also a simple fix - here's the appropriate revLoadLibrary from the JSON library livecodescript file - setting the _ideoverride when the library loads is the way to tell the system to treat it like an IDE stack:
Code: Select all
on revLoadLibrary
if the target is not me then
pass revLoadLibrary
end if
insert the script of me into back
if the environment contains "development" then
set the _ideoverride of me to true
end if
end revLoadLibrary
PowerDebug http://powerdebug.ahsoftware.net
PowerTools http://www.ahsoftware.net/PowerTools/PowerTools.irev
PowerTools http://www.ahsoftware.net/PowerTools/PowerTools.irev
Re: Project Browser
Sorry, that is beyond my understanding at this point. Thank you though.
Linda
Linda
Re: Project Browser
No worries - basically it means that I'll file a bug report about it and the team will get around to fixing it some day. It's nothing that you really have control over at this point.
PowerDebug http://powerdebug.ahsoftware.net
PowerTools http://www.ahsoftware.net/PowerTools/PowerTools.irev
PowerTools http://www.ahsoftware.net/PowerTools/PowerTools.irev
Re: Project Browser
Hi Linda,
in menu: View
you can also un-/check -> Show IDE stacks in lists
Maybe that is checked there?
Hint:
Do yourself a favour and also check this in the LC prefs:
-> General -> Property Labels are -> Name of Livecode property
Then you will see the LC terms in the inspector that you can use in your scripts!
Best
Klaus
in menu: View
you can also un-/check -> Show IDE stacks in lists
Maybe that is checked there?
Hint:
Do yourself a favour and also check this in the LC prefs:
-> General -> Property Labels are -> Name of Livecode property
Then you will see the LC terms in the inspector that you can use in your scripts!
Best
Klaus