Script name ?
-
CookieMonster
Script name ?
Could someone one tell me the name of this script that is seen in the image ?
- Attachments
-
- script.jpg (24.79 KiB) Viewed 3750 times
Re: Script name ?
this topic is what you are actually after . The script was called originally "all buttons" with topic title "unheralded feature?".
http://www.xyplorer.com/xyfc/viewtopic. ... 4&start=30
I have enhanced the script by adding to it and now is only missing one button.
http://www.xyplorer.com/xyfc/viewtopic. ... 4&start=30
I have enhanced the script by adding to it and now is only missing one button.
totmad1 (totally mad one)
Re: Script name ?
The forum doesn't search inside code or quote blocks so it is sometimes better to use Google and restrict results to XYplorer.com:
"Toolbar Button Operations" site:xyplorer.com
"Toolbar Button Operations" site:xyplorer.com
-
j_c_hallgren
- XY Blog Master
- Posts: 5826
- Joined: 02 Jan 2006 19:34
- Location: So. Chatham MA/Clearwater FL
- Contact:
Re: Script name ?
So is that similar/equivalent to the button list via this post?totmad1 wrote:this topic is what you are actually after . The script was called originally "all buttons" with topic title "unheralded feature?".
http://www.xyplorer.com/xyfc/viewtopic. ... 4&start=30
I have enhanced the script by adding to it and now is only missing one button.
(http://www.xyplorer.com/xyfc/viewtopic. ... 663#p83663) which I just found via some links discussed here...I had something like this on my other system, I think.
Still spending WAY TOO much time here! But it's such a pleasure helping XY be a treasure!
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
(XP on laptop with touchpad and thus NO mouse!) Using latest beta vers when possible.
Re: Script name ?
it is loosely similar but the topic shows how to get all buttons onto one user button
i have in fact made it easy for XY users by doing the work for them and making it
an example of submenus.
i have in fact made it easy for XY users by doing the work for them and making it
an example of submenus.
totmad1 (totally mad one)
-
CookieMonster
Re: Script name ?
How do I add items to "Group A" as seen in the screen capture ? I was hoping I could get the button name and add the button name below the name "Group A" within the script, I was wrong.CookieMonster wrote:Could someone one tell me the name of this script that is seen in the image ?
Re: Script name ?
Have a look at the sample below
I have added "instant color filters" and "Preview" into Group A
hth
I have added "instant color filters" and "Preview" into Group A
Code: Select all
"Edit Button : editButton" UserButton(9, 128);
"Customize Toolbar : custTB" Button("ctb1", 256);
"Edit script : edit"
$ScriptFile= self ("file");
run notepad $ScriptFile,w;
-
"<- 0MenuTemp|:0MenuTemp|1 : " Load("MenuProducer\0MenuTemp.xys");
-
"Other button pages ->|:Other : OtherME" Load("*","_OtherMD;-;_OtherA;_OtherB;_OtherC;_OtherD");
"<- Main buttons page|<xydata>\Icons\button.ico |1 : _OtherMD" Load("Buttons");
"&Buttons2|<xydata>\Icons\button2.ico : _OtherA" load "Buttons2";
"&Buttons3|<xydata>\Icons\button3.ico : _OtherB" load "Buttons3";
"&Buttons4|<xydata>\Icons\button4.ico : _OtherC" load "Buttons4";
"&Buttons5|<xydata>\Icons\button5.ico : _OtherD" load "Buttons5";
-
"Group A|<xyicons>a\???.ico : GrpaME" Load("*","_GrpaMD;-;_GrpaA;_GrpaB;_GrpaC;_GrpaD;_GrpaE;_GrpaF;_GrpaG;_GrpaH");
"<- Main buttons page|<xydata>\Icons\button.ico |1 : _GrpaMD" Load("Buttons");
"Toggle Instant Color Filter|:icf : _GrpaA"
"&Left Click|:icf : _GrpaB" Button("icf", 1);
"&Right Click|:icf : _GrpaC" Button("icf", 2);
"&Down Arrow|:icf : _GrpaD" Button("icf", 8);
"Preview ->|:preview : _GrpaE"
"&Left Click|:preview : _GrpaF" Button("preview", 1);
"&Right Click|:preview : _GrpaG" Button("preview", 2);
-
"Address Bar Go ->|:go : goME" Load("*","_goMD;-;_goL;_goR;_goD");
"<- Address Bar Go|:go|1 : _goMD" Load("*");
"&Left Click|:go : _goL" Button("go", 1);
"&Right Click|:go : _goR" Button("go", 2);
-
-
"CANCEL"totmad1 (totally mad one)
-
CookieMonster
Re: Script name ?
Code: Select all
"Preview ->|:preview : _GrpaE"
"&Left Click|:preview : _GrpaF" Button("preview", 1);
"&Right Click|:preview : _GrpaG" Button("preview", 2);It would be nice if the menu could have an ">" pointing to more menu items ?
Re: Script name ?
1. see my first post pointing to http://www.xyplorer.com/xyfc/viewtopic. ... 4&start=30
for where i'm getting the code from
2. where my line
"Group A|<xyicons>a\???.ico : GrpaME" Load("*","_GrpaMD;-;_GrpaA;_GrpaB;_GrpaC;_GrpaD;_GrpaE;_GrpaF;_GrpaG;_GrpaH");
replace with "Group A __--->|<xyicons>a\???.ico : GrpaME" Load("*","_GrpaMD;-;_GrpaA;_GrpaB;_GrpaC;_GrpaD;_GrpaE;_GrpaF;_GrpaG;_GrpaH");
this is what i normally put in to signify 'submenu' . If you see my "project menu i use a slightly different sequence of symbols .
for where i'm getting the code from
2. where my line
"Group A|<xyicons>a\???.ico : GrpaME" Load("*","_GrpaMD;-;_GrpaA;_GrpaB;_GrpaC;_GrpaD;_GrpaE;_GrpaF;_GrpaG;_GrpaH");
replace with "Group A __--->|<xyicons>a\???.ico : GrpaME" Load("*","_GrpaMD;-;_GrpaA;_GrpaB;_GrpaC;_GrpaD;_GrpaE;_GrpaF;_GrpaG;_GrpaH");
this is what i normally put in to signify 'submenu' . If you see my "project menu i use a slightly different sequence of symbols .
totmad1 (totally mad one)
-
CookieMonster
Re: Script name ?
I'm restricted to only the code used in your post ?1. see my first post pointing to viewtopic.php?f=3&t=4144&start=30
for where i'm getting the code from
There are two screen captures. After inserting 'Full Screen Preview ->' and 'color filters' code into my menu, I was hoping another fly-out sub-menu would appear, instead what appears to be some random location on the screen the color filters with 'left click' & 'right click' menu appears. Can it be organized whereas a sub-menu appears directly to the right beside the new menu ?
- Attachments
-
- xy-image-a.jpg (8.04 KiB) Viewed 3531 times
-
- xy-image-b.jpg (4.05 KiB) Viewed 3531 times
Re: Script name ?
noCookieMonster wrote:Can it be organized whereas a sub-menu appears directly to the right beside the new menu ?
XYplorer Beta Club