Documention for: style-tooltip.r
Created by: shadwolf
on: 29-Nov-2004
Format: html
Downloaded on: 29-Mar-2024

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