noob question Thread last updated on 2003-06-07 07:04:21

Posted by member 39173 on 2003-06-06 16:37:48

So i'm making my own skin...
and ther is 1 thing i just can't figure out!

on clicking a shortcut I want to open a *popup (self made)
*popup "title" !new !name

And i want that popup to imediatly display a folder
not!
*popup "title" !new !name
*popup "title2" !dynamicfolder[..]

can annybody help me?

-bert-

Posted by member 35747 on 2003-06-06 17:42:00 link

some code for u
start menu: (in xp)
*Popup "start menu" !dynamicFolder:"$Programs$|$CommonPrograms$"

a dynamic folder
*Popup "shortcuts" !dynamicFolder:"$litestepdir$shortcuts"


like i understant you, use the second method, remplace the $litestepdir$ by your own path and put this code to the main popup, you'll have your popup who display immediatly a folder

Posted by member 39173 on 2003-06-06 18:39:11 link

this i know
but it isn't what i Want...

It should be a seperate popup (troug a shortcut)

so i need at least

*popup "name" !new !popupname

I actualy wonder if my requaest is posible

Posted by member 35747 on 2003-06-06 18:51:27 link

you want another popup, yup its possible, just add it in bottom of popup.rc
*popup !new !popupname
*Popup ... *your thing
*popup ~new


just call the !popupname and that is, you havea new popup

Posted by member 39173 on 2003-06-06 19:03:46 link

know that 2...
but still isn't the thing I'm looking for...

I actualy want to display my C:/ drive...
The only way i can do this is by doing this

*popup !new !PopupC
*Popup "testing" !dynamicFolder:"C:/"
*popup ~new

this results into 2 popups...

what I'm looking for is that my c:/ drive would be displayed in the first popup...

Posted by member 7 on 2003-06-07 06:12:25 link

use !PopupDynamicFolder c:\ (as a "global" !bang)

Posted by member 39173 on 2003-06-07 07:04:21 link

thx, that did it

-bert-