dagcrack wrote:Let's add 7up too!

Let's add 7up too!
appearently only in light or diet versions...well.. I vote for 7zip but only if it adds just a few KBs to the exe and not 200KBs Razz - Let's add 7up too!
i think the best and most easy way would be to have for all commands needing colorparameter, to use a a long as colorvalue instead a byte for each color... for example...Lebostein wrote:Please add optional color parameters (single color or R, G and B severally) to some sprite commands:
ClearScreen(R, G, B) and/or ClearScreen(RGB.l)
TransparentSpriteColor(SpriteID.l, R, G, B) and/or TransparentSpriteColor(SpriteID.l, RGB.l)
Code: Select all
#MYOPTIONGADGET = 45
OptionGadgetBegin(#MYOPTIONGADGET)
AddItem(10, 10, 1, "Option 1")
AddItem(10, 40, 2, "Option 2", #True) ; default selected
AddItem(10, 70, 3, "Option 3")
AddItem(10, 100, 7, "Option with value 7")
OptionGadgetEnd()
Code: Select all
Procedure MyFunc(name.s, tel.s, optional address.s = "N/A")
...
EndProcedure
MyFunc("Albert", "123", "USA")
MyFunc("Alan", "321")
MyFunc("Andy", "911", ":)")
Code: Select all
If Keyboard(#PB_Key_Up)
;do something
EndIf
If Mouse(#PB_MouseButton_Left,#Released)
;do something
EndIf