Page 1 of 1
SSAY , DSAY and SAYREF transparent
Posted: Sat Jan 26, 2008 3:43 pm
by Silvio
I need these classes transparent
DSAY
SAYREF
SSAY
where I can found these class with modifies ( tranparent say on dialog resources)
Posted: Sat Jan 26, 2008 6:54 pm
by James Bott
If by SSAY you are referring to the Sensitive Say control by Ramón Avendaño, then you just need to add the TRANSPARENT clause in the REDEFINE.
James
Posted: Sun Jan 27, 2008 1:13 am
by Silvio
YES OF COURSE,
BUT IT NOT IS TRANSPARENT
LOOK
Code: Select all
REDEFINE SENSITIVE SAY oSay PROMPT cMail ;
COLOR CLR_HBLUE COLOROVER CLR_RED ;
ON MOUSEOVER SndPlaySound("Select.Wav") ID 212 OF oDlg ;
ACTION ShellExecute(oWnd:hWnd,"Open","MailTo:"+cMail,Nil,Nil,1);
TRANSPARENT FONT oFnt
Posted: Mon Jan 28, 2008 8:01 pm
by James Bott
Silvio,
Perhaps there is a bug when using all the clauses you are using. Try this:
REDEFINE SENSITIVE SAY ID 212 of oDlg transparent
And see if that works. If so, then start adding the rest of your clauses one at a time until if fails. That will at least give you a starting point to debug the problem.
James