Script Library: 1238 scripts
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 
View scriptLicenseDownload documentation as: HTML or editable
Download scriptHistoryOther scripts by: shadwolf

Documentation for: style-tooltip.r


This is the code sample to make work the style-tooltip.r script.

REBOL [] 	
 	
do %style-tooltip.r ; on execute le tooltip 	
 	
fen: layout/size [ 	
origin 20x20 	
zt: field 100x20 "Essai" 	
pad 0x40 b2: btn "Quitter" [quit] 	

tooltip with [ data: compose [ (b2) "ceci est un bouton" ]] ;widget-object 
tooltip 	

tooltip with [ data: compose [ (zt) "ceci est champs de saisie"]] 
	
] 200x150 	
 	
view center-face fen