Hi all.
Can someone tell me if there is a way to change the default colour of the slider bars in Runrev?
Thanks again
Bidge
Slider Colour
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Hi Bidge,
I dont know of a way to color slider bars,
but if you use Rev 4.0 then you could fake it with an innerShadow.
this works on a mac, you would have to adjust for Windows.
you could tweak it in the inspector and adjust the code.
regards
Bernd
I dont know of a way to color slider bars,
but if you use Rev 4.0 then you could fake it with an innerShadow.
this works on a mac, you would have to adjust for Windows.
Code: Select all
on mouseUp
set the innerShadow["angle"] of field 1 to 180
set the innerShadow["blendmode"] of field 1 to "multiply"
set the innerShadow["color"] of field 1 to "0,34,239"
set the innerShadow["distance"] of field 1 to 27
set the innerShadow["filter"] of field 1 to "gaussian"
set the innerShadow["opacity"] of field 1 to 62
set the innerShadow["size"] of field 1 to 10
set the innerShadow["spread"] of field 1 to 255
end mouseUp
regards
Bernd
-
- VIP Livecode Opensource Backer
- Posts: 10052
- Joined: Sat Apr 08, 2006 7:05 am
- Contact:
If you need to make a completely custom-looking slider, Chipp Walters at Altuit has a nifty tool called "Interface Designer" that makes short work of building custom sliders and more, for the low cost of US$15:
http://www.altuit.com/webs/revCentral/I ... torial.htm
http://www.altuit.com/webs/revCentral/I ... torial.htm
Richard Gaskin
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn