Posted by member 2111 on 2004-02-23 17:53:58 link
If you just need to point the quick access to another program, just change what quickaccess points to -
quickaccess "c:\path to program"
If the path has spaces in it, you will need to enclose the $quickaccess$ variable in " " like "$quickaccess$" in the base.rc file
If you are trying to add extra quick access buttons, try this
themevars.rc
;--> Choose what folder to display for Quick Access popup
quickaccess1 "c:\path"
quickaccess2 "d:\path"
quickaccess3 "e:\path"
and in base.rc it should look like -
;------------------------------------------------------------------------------
; shortcut2 config
;------------------------------------------------------------------------------
If QuickAccessOn = true
*shortcut "Some Name" $priLeft+Divide05X+Divide05Width$ $priBottom-20$ shortcut.png shortcuta.png shortcutb.png #12T !PopupDynamicfolder "$quickaccess1$" x=$priLeft+Divide05X+Divide05Width$ y=$priBottom-20$ left bottom
*shortcut "Something" $priLeft+Divide05X+Divide05Width+20$ $priBottom-20$ shortcut.png shortcuta.png shortcutb.png #12T !PopupDynamicfolder "$quickaccess2$" x=$priLeft+Divide05X+Divide05Width+20$ y=$priBottom-20$ left bottom
*shortcut "Some More" $priLeft+Divide05X+Divide05Width+40$ $priBottom-20$ shortcut.png shortcuta.png shortcutb.png #12T !PopupDynamicfolder "$quickaccess3$" x=$priLeft+Divide05X+Divide05Width+40$ y=$priBottom-20$ left bottom
QuickLaunchWidth 20
Else
QuickLaunchWidth 0
Endif
;------------------------------------------------------------------------------
; Label config
;------------------------------------------------------------------------------
labels Divide04
Divide04X $Divide05X+Divide05Width+QuickLaunchWidth+40$
The important part in base.rc is to change the width by an extra 20 for each extra button that is needed
I'm not sure if that answers your question though.
quickaccess "c:\path to program"
If the path has spaces in it, you will need to enclose the $quickaccess$ variable in " " like "$quickaccess$" in the base.rc file
If you are trying to add extra quick access buttons, try this
themevars.rc
;--> Choose what folder to display for Quick Access popup
quickaccess1 "c:\path"
quickaccess2 "d:\path"
quickaccess3 "e:\path"
and in base.rc it should look like -
;------------------------------------------------------------------------------
; shortcut2 config
;------------------------------------------------------------------------------
If QuickAccessOn = true
*shortcut "Some Name" $priLeft+Divide05X+Divide05Width$ $priBottom-20$ shortcut.png shortcuta.png shortcutb.png #12T !PopupDynamicfolder "$quickaccess1$" x=$priLeft+Divide05X+Divide05Width$ y=$priBottom-20$ left bottom
*shortcut "Something" $priLeft+Divide05X+Divide05Width+20$ $priBottom-20$ shortcut.png shortcuta.png shortcutb.png #12T !PopupDynamicfolder "$quickaccess2$" x=$priLeft+Divide05X+Divide05Width+20$ y=$priBottom-20$ left bottom
*shortcut "Some More" $priLeft+Divide05X+Divide05Width+40$ $priBottom-20$ shortcut.png shortcuta.png shortcutb.png #12T !PopupDynamicfolder "$quickaccess3$" x=$priLeft+Divide05X+Divide05Width+40$ y=$priBottom-20$ left bottom
QuickLaunchWidth 20
Else
QuickLaunchWidth 0
Endif
;------------------------------------------------------------------------------
; Label config
;------------------------------------------------------------------------------
labels Divide04
Divide04X $Divide05X+Divide05Width+QuickLaunchWidth+40$
The important part in base.rc is to change the width by an extra 20 for each extra button that is needed
I'm not sure if that answers your question though.