SSAY , DSAY and SAYREF transparent

Post Reply
User avatar
Silvio
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

SSAY , DSAY and SAYREF transparent

Post by Silvio »

I need these classes transparent

DSAY
SAYREF
SSAY

where I can found these class with modifies ( tranparent say on dialog resources)
Best Regards, Saludos

Falconi Silvio
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Post 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
User avatar
Silvio
Posts: 3107
Joined: Fri Oct 07, 2005 6:28 pm
Location: Teramo,Italy

Post 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
Best Regards, Saludos

Falconi Silvio
User avatar
James Bott
Posts: 4654
Joined: Fri Nov 18, 2005 4:52 pm
Location: San Diego, California, USA
Contact:

Post 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
Post Reply