How can I create a scrolling tab text xml?

Asked By 20 points N/A Posted on -
qa-featured

 

Hi,

How can I create a scrolling tab text xml? I am not an expert of xml program or application but very interested about it. How is it related to html and php programming languages? I hope you can provide the best solution or answer to my question.

Regards,

Greqory Gregory.

SHARE
Answered By 5 points N/A #178425

How can I create a scrolling tab text xml?

qa-featured

Well Gregory ,

Extensible Markup Language (XML) is created to transport, store and structured data.it defines a rules set. Both machine and man can read this XML. You can try this scrolling tab with text with the given code I am providing here.
 
Code on Text field
//var text = " here you put your text to be scroll"
 
xml1 = new XML();
xml1.onLoad = myOnLoad;
xml1.load("lo.xml"); 
function myOnLoad (success) {
if (success)
{Text = xml1;}}
 
code on button
on (release) {set("text.scroll", text.scroll – 1);}
 
Now make changes and enjoy. Thanks.
 

Related Questions