XPProgressBar PlugIn for Multimedia Builder
Copyright © 2004 Amir Borovac
Note
If more than one, each parameter should
be finished with |
parameters aren't case-sensitive which
means Hex=HEX=hEx
Any questions at amirborovac@hotmail.com
or amirborovac@yahoo.com
Commands
Set_XP_Progress_Bar_Position
This command sets position of ProgressBar
in percents
Example
set$='75'
PluginSet("XPProgressBar","set$")
PluginRun("XPProgressBar","Set_XP_Progress_Bar_Position")
parameter1 is position in percents
Set_XP_Progress_Bar_Min_Position
This command sets minimum position of
ProgressBar
Example
set$='30'
PluginSet("XPProgressBar","set$")
PluginRun("XPProgressBar","Set_XP_Progress_Bar_Min_Position")
take a look at next command
Set_XP_Progress_Bar_Max_Position
This command sets maximum position of
ProgressBar
Example
set$='40'
PluginSet("XPProgressBar","set$")
PluginRun("XPProgressBar","Set_XP_Progress_Bar_Max_Position")
if minimum position is 30 and maximum
position is 40 then if you try to set position at 50 % then ProgressBar
position will be at 35
Set_XP_Progress_Bar_Color_From
This command sets outside color of
ProgressBar
Example
set$='Hex|2157D7|'
PluginSet("XPProgressBar","set$")
PluginRun("XPProgressBar","Set_XP_Progress_Bar_Color_From")
parameter1 is always Hex if you want to
set color using it's hex code
parameter2 is hex code of color if
parameter1 is Hex
to set color using it's RGB values then
you should use 3 parameters
set$='33|87|215|
parameter1 is Red value of color
parameter2 is Green value of color
parameter3 is Blue value of color
Set_XP_Progress_Bar_Color_To
This command sets inside color of
ProgressBar
Example
set$='Hex|ABCDEF|'
PluginSet("XPProgressBar","set$")
PluginRun("XPProgressBar","Set_XP_Progress_Bar_Color_To")
parameter1 is always Hex if you want to
set color using it's hex code
parameter2 is hex code of color if
parameter1 is Hex
to set color using it's RGB values then
you should use 3 parameters
set$='171|205|239|
parameter1 is Red value of color
parameter2 is Green value of color
parameter3 is Blue value of color
Set_XP_Progress_Bar_Color
This command sets background color of
ProgressBar
Example
set$='Hex|CCF5FF|'
PluginSet("XPProgressBar","set$")
PluginRun("XPProgressBar","Set_XP_Progress_Bar_Color")
parameter1 is always Hex if you want to
set color using it's hex code
parameter2 is hex code of color if
parameter1 is Hex
to set color using it's RGB values then
you should use 3 parameters
set$='204|245|255|
parameter1 is Red value of color
parameter2 is Green value of color
parameter3 is Blue value of color
Hide_XP_Progress_Bar
This command hides ProgressBar
Example
PluginRun("XPProgressBar","Hide_XP_Progress_Bar")
this command is needed if there are 2 or more pages at your MMB
project and you want PlugIn
Show_XP_Progress_Bar
This command shows ProgressBar
Example
PluginRun("XPProgressBar","Show_XP_Progress_Bar")