I have been asked to implement a scrolling message, you know, like the credits that appear after a movie ending? Is there some sort of library out there that would allow me to do this?
TIA
BCC5.82/BCC7.3
xHarbour/Harbour
I have been asked to implement a scrolling message, you know, like the credits that appear after a movie ending? Is there some sort of library out there that would allow me to do this?
TIA
#Include "DSay.ch"
//
//
       REDEFINE DYNAMIC SAY oSay;
           PROMPT "Text... 1" + CRLF +;
               "Text....2" + CRLF +;
               "Text....3" ;
           ID 4004;
           OF acerca;
           CENTERED;
           COLOR CLR_BROWN;
           VERTICAL;
           SCROLL;
           SPEED 45;
           WRAP=====>
Bayron Landaverry
xBasePHP.com
(215)2226600 Philadelphia,PA, USA
MayaBuilders@gMail.com
Guatemala
FWH25.06--Harbour 3.0.0--BCC7.7--UEstudio 10.10
Windows 10
FiveWin, One line of code and it's done...
Thank you for the reply Bayron. I've never come acrossed dynamic say before, is this part of standard FWH control? If it's not from where can I download it please? Thank you.
=====>
Bayron Landaverry
xBasePHP.com
(215)2226600 Philadelphia,PA, USA
MayaBuilders@gMail.com
Guatemala
FWH25.06--Harbour 3.0.0--BCC7.7--UEstudio 10.10
Windows 10
FiveWin, One line of code and it's done...
Thank you Bayron
Bayron:
Do you have any code that works with the scrolling. I've been playing with the info you sent but I can't get it to work. Thanks
Hua:
Thanks for the info. Havn't tried it yet. will keep you posted on how it works.
Hi,
Is there anyone have this file or something like that? The link is broken.
karinha wrote:DSay and SSay
https://www.4shared.com/zip/frhN_QWqce/DSAYSSAY.html
Regards,
Horizon wrote:karinha wrote:DSay and SSay
https://www.4shared.com/zip/frhN_QWqce/DSAYSSAY.html
Regards,
Can you please share the link other than from 4shared.com?
local cText := MemoRead( "c:\fwh\samples\maria01.prg" )
local oDlg, oMsg, oFont, oBold
DEFINE FONT oFont NAME "LUCIDA CONSOLE" SIZE 0,-14
DEFINE FONT oBold NAME "VERDANA" SIZE 0,-32
DEFINE DIALOG oDlg SIZE 800,500 PIXEL TRUEPIXEL
@ 100,100 SCROLLMSG "FiveWin Power : New Scroll Msg class" ;
SIZE 600,40 PIXEL OF oDlg ;
FONT oBold COLOR CLR_BLACK,CLR_HGREEN HORIZONTAL ;
SPEED 2
@ 200,100 SCROLLMSG oMsg TEXT cText SIZE 600,200 PIXEL OF oDlg ;
FONT oFont COLOR CLR_HRED, CLR_YELLOW SPEED 2
ACTIVATE DIALOG oDlg CENTERED
RELEASE FONT oFont, oBold
very good Mr. Rao.
DSay also support BLINKING command.