Hi, i wonder if it has 2 work profile, for different kind of file management in tabs.. for different projects.
Thank you
Two profile like google chrome
Re: Two profile like google chrome
it has no 1 click button for this
but you can use Tabsets to store and load the open Tabs
+ i use scripted column layout loading to quickly change context
but you can use Tabsets to store and load the open Tabs
+ i use scripted column layout loading to quickly change context
-
shamsudeen
- Posts: 64
- Joined: 05 May 2012 06:58
Re: Two profile like google chrome
Code: Select all
"_ : load_instance"{
$script_ini = "Path to your ini file where you store some variables ";
$method = popupmenu("work|pv|music"); // select the instance
if $method == "work"{
// restore dlobal filter
$FILTER = getkey("work" , "filter" ,$script_ini);
filter $FILTER, 6;
// restore ghost
$GHOST = getkey("work" , "ghost" ,$script_ini);
ghost($GHOST,1);
tabset("load", "work_1" , "1");
tabset("load", "work_2" , "2");
// tagload("<xydata>\tag.dat"); you can load different tag DB , i dont ...
// write Instance name to a button and load icon to another button
ctbicon("text:work", 20);
/ctbicon("C:\_\icons\someicon.ico", 2);
if $method == "pv"{ }
"_ : save_n_exit"{
$script_ini = "Path to your ini file where you store some variables ";
$instance = ctbicon(, 20);
$instance = trim($instance,"text:");
// store current Filters
$GVF = trim(get("gvf"));
setkey $GVF , $instance, "filter" , $script_ini;
$GHOST = ghost();
setkey $GHOST , $instance, "ghost" , $script_ini;
//store Tabsets
tabset("save", , "1");
tabset("save", , "2");
exit;
}most import is the tabsets ,,, they must be visible under "<xyroot>\Data\Panes"
+ Global and Ghostfilters if you need them
just an idea for you how it can be done ,
-
shamsudeen
- Posts: 64
- Joined: 05 May 2012 06:58
Re: Two profile like google chrome
Thank you . i try itbossi wrote: ↑17 Aug 2025 20:58like i said , its all just chaining together available featuresCode: Select all
"_ : load_instance"{ $script_ini = "Path to your ini file where you store some variables "; $method = popupmenu("work|pv|music"); // select the instance if $method == "work"{ // restore dlobal filter $FILTER = getkey("work" , "filter" ,$script_ini); filter $FILTER, 6; // restore ghost $GHOST = getkey("work" , "ghost" ,$script_ini); ghost($GHOST,1); tabset("load", "work_1" , "1"); tabset("load", "work_2" , "2"); // tagload("<xydata>\tag.dat"); you can load different tag DB , i dont ... // write Instance name to a button and load icon to another button ctbicon("text:work", 20); /ctbicon("C:\_\icons\someicon.ico", 2); if $method == "pv"{ } "_ : save_n_exit"{ $script_ini = "Path to your ini file where you store some variables "; $instance = ctbicon(, 20); $instance = trim($instance,"text:"); // store current Filters $GVF = trim(get("gvf")); setkey $GVF , $instance, "filter" , $script_ini; $GHOST = ghost(); setkey $GHOST , $instance, "ghost" , $script_ini; //store Tabsets tabset("save", , "1"); tabset("save", , "2"); exit; }
most import is the tabsets ,,, they must be visible under "<xyroot>\Data\Panes"
+ Global and Ghostfilters if you need them
just an idea for you how it can be done ,
XYplorer Beta Club