Creating/simulating of a seekbar

Post a reply

Smilies
:D :) :( :o :-? 8) :lol: :x :P :oops: :cry: :evil: :roll: :wink:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

Expand view Topic review: Creating/simulating of a seekbar

Creating/simulating of a seekbar

by Andreas Weichert » Thu May 02, 2013 12:47 pm

I need a continious seekbar. Click on a position and get its value.
But the common seekbar behaves like a spin-button - it increments/decrements the value.
Therefore I look for a OnMouseDown-event which delivers me a x,y position to simulate a seekbar with other controls.

But I cannot fiqure out how to link a OnMouseDown event. Nothing works !!!

Script.RegisterEvent Btn3, "OnMouseDown", "TestMD"
Script.RegisterEvent Panel, "OnMouseDown", "TestMD"

Besides:
It is possible to give a panel or a button an other color?

Top