nOOb scripting question.
Moderators: BTT, andy55, b.dwall, juxtiphi
nOOb scripting question.
I would like G-Force to turn off spires and particles and stop all slideshows when i start it up. how do i script this?
Copy and paste this into a text editor like wordpad then save (as text) to folder C:\program files\soundspectrum\g-force\scripts
as stopall.txt
with this line (then save the file).
as stopall.txt
Next open up a file (in the same scripts folder) called startup.txt and look for this00:00
SetSlideShow( CONFIG_WAVESHAPE | CONFIG_COLORMAP | CONFIG_FLOWFIELD | CONFIG_SPRITE | CONFIG_PARTICLE, false );
replace Run( "logo.txt" );// If we're running the V-Bar, don't do the periodic logo
#if BAR == 0
Run( "logo.txt" );
#endif
with this line (then save the file).
G-Force will run the script stopall when it starts and that script stops all slideshows (before they have a chance to get started). I guess you want to control things with the toolbar?Run("stopall",0);