Link to home
Start Free TrialLog in
Avatar of madheeswar
madheeswarFlag for Singapore

asked on

Scrolling Text in Client

Dear Experts,
Data is fetched using @dbcolumn to a field. This data should be visible as Marquee....kind of Scrolling News(You can see in TV Channels, Scrolling News from Right to Left).
I need it from Right to Left scroll without jerks and speed should be uniform.

Please keep in mind, this is a Notes based application. version 6.5

I used NotesTimer , but it displays jerks....

If I am using JavaScript, it is taking internal memory and after reaching certain limit, it gives javascript Compile error or it  gives NSD running error.

If you need code, do let me know.

Any ideas?

thanks.
ASKER CERTIFIED SOLUTION
Avatar of SysExpert
SysExpert
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of madheeswar

ASKER

SysExpert,
Thanks for response. As I said earlier, if I use JS, I get JavaScript Compiling Error. And if I use LotusScript, it is Jerky and client is not accepting.

Applets should not be used in this database.

Any other ideas?
You might consider using the OS, windows API instead of the Lotus TImer, since it could provide more accuracy, but I am not sure about how to get it to work as an interrupt.
Another option is the C API.

Did you check all the examples in the above links ?


Yes.. I checked all the examples above. When I use JS, MemoryUsage is incrementing. I need to kill this dynamic memory allocation atleast.
Any ideas on how to do this?

Thanks
You might want to post a reqest in the Java TA on how to fix the Java issue. They may have a work around for you.

I hope this helps !
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi Partha,
Thanks for response.
I used same code before and have the JS Compiling error after a time. JS is taking internal memory and we cannot remove it.

So, I opted for Applet which I got from another source.