Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
https://www.youtube.com/watch?v=8HXfWbaciRU
If you want the text to be centered, just change text alignment in String object's properties (I haven't tried this but I think it should work).
I am not sure how Fusion handles strings but here is a BASIC version:
len(a$) would give the value of the length of the string.
This scrolling technique works best if there the string to display is an even numbered length. If it is an odd numbered length, add a space to the end of the string.
A$ = "Text To Be Scrolled"
for i = 1 to len(a$)/2
Display$ = Left$(A$,i) + Right$(A$, Len(a$)-i)
// Takes the Leftmost characters and adds them to the rightmost characters
// Loop through the length to display the entire string, A$
Print Display$
Next i
http://steamcommunity.com/sharedfiles/filedetails/?id=959683378