Sie sind nicht angemeldet.

Tuur

Erleuchteter

  • »Tuur« ist der Autor dieses Themas

Beiträge: 3 839

Wohnort: Netherlands

Beruf: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer

  • Nachricht senden

1

Freitag, 16. Januar 2009, 17:37

opicaty and transparent textfield

Yo people,

i was wondering how to make an transparent textfield background and/or how can i set the opicaty (?)

Thanx

Tuur *thumbsup*

2

Freitag, 16. Januar 2009, 18:46

Quellcode

1
2
3
4
5
6
7
8
9
		set(plugin[info_text].alpha,0);
		set(plugin[info_text].textblur,15);
		set(plugin[info_text].blur,15); 
		set(plugin[info_text].visible,true);
		set(plugin[info_text].enabled,true);
		tween(plugin[info_text].alpha,1,0.3); 
		tween(plugin[info_text].textblur,0,0.3); 
		tween(plugin[info_text].blur,0,0.3);
	



on this line
tween(plugin[info_text].alpha,1,0.3);
you can change apha 1 for
tween(plugin[info_text].alpha,0.00,0.3); and you are tranparent

tween(plugin[info_text].alpha,0.5,0.3); and you are a mid opacity

;-)

Tuur

Erleuchteter

  • »Tuur« ist der Autor dieses Themas

Beiträge: 3 839

Wohnort: Netherlands

Beruf: Krpano custom coding / Virtual Tours / Photography / Musician / Recording engineer

  • Nachricht senden

Graydon

Profi

Beiträge: 614

Wohnort: Texas

Beruf: Industrial gas turbine services.

  • Nachricht senden

4

Samstag, 17. Januar 2009, 17:41

will that change just the background or will it include the text as well in the transparency?

I tried playing with it using the editor plugin on one of the samples from the documentation and I couldn't get it to change when I adjusted the alpha... could make the background go away completely though.

Ähnliche Themen