do i have to list every single command... Thread last updated on 2003-04-16 04:33:54

Posted by member 24661 on 2003-04-16 02:29:44

for the module if i want to use it, cause all i have now is...

;Litestep Start.rc file
;First theme

ThemeName "First Theme"
ThemeAuthor "PODNickerz"

ModulesDir $themeDir$Modules\

LoadModule $LitestepDir$desktop2.dll
LoadModule $LitestepDir$command.dll

CommandX
CommandY
CommandWidth
CommandHeight

---
and it don't show nothin?

Posted by member 15023 on 2003-04-16 02:36:04 link

Ok....first off your ModulesDir don't mean jack if themeDir isn't set. First add:
themeDir $LiteStepDir$themes\whatever-the-folder-name-is-this-step.rc-is-in\


Then try adding:
LoadModule $LiteStepDir$PopUp2.dll
PersonalDir $LiteStepDir$personal\
include $PersonalDir$personal.rc

I think that'll at least get you a popup.

And you do realize you need to put things after the commands, like:
CommandX 1
CommandY 1
CommandWidth 300
CommandHeight 20

Posted by member 24661 on 2003-04-16 02:48:27 link

yeh, i didn't put the numbers in cause i wanted the defaults
though, it still doesn't show anything?

and the popup thing doesn't pop up anything?

Posted by member 15023 on 2003-04-16 02:56:52 link

Defaults? There are no defaults. You have to put numbers after it.

Posted by member 24661 on 2003-04-16 03:03:37 link

like what it says in the docs

CommandX [X CO-ORDINATE] The horizontal co-ordinate of the Command Box's screen position.
Default: 0

CommandY [Y CO-ORDINATE] The vertical co-ordinate of the Command Box's screen position.
Default: 0

CommandWidth [NUMBER] Sets the width of the Command Box, in pixels.
Default: 160

CommandHeight [NUMBER] Sets the height of the Command Box, in pixels.
Default: 20

Posted by member 15023 on 2003-04-16 03:07:08 link

Guess I'm wrong. Man....I need to RTFM. I never started a theme from scratch, so I can't really help ya. I think it'd be easier to take someone elses step.rc and edit for your own uses.

Posted by member 15023 on 2003-04-16 03:14:06 link

Ok I figured this out. First off edit your step.rc and use this:

;Litestep Start.rc file
;First theme

ThemeName "First Theme"
ThemeAuthor "PODNickerz"

ModulesDir $themeDir$Modules\

LoadModule $LitestepDir$desktop2.dll
LoadModule $LitestepDir$command.dll

CommandX
CommandY
CommandWidth
CommandHeight


Now I used this and switched to the them using LSTS and it didn't work. I wondered why...here's the kicker. Open LSTS and highligh whatever your theme is named. Now click on edit settings on the right. Where it says step, click the ... on the right and find your step.rc. Press OK run your theme and it should work. Hope this helps.

Posted by member 99 on 2003-04-16 03:14:14 link

The defaults are used if you don't list the commands at all. If you put the command in with nothing after it, I don't know what it does, it might take everything to be 0.

Posted by member 24661 on 2003-04-16 04:33:54 link

whoo hooo! It works! Thankyou!!!