hmm got the green checkmark with some changes, but started crashing xpression if i tried to change font names, here is how i mutilated your code:
dim Tweet as xpTextObject
dim fntNormal as xpFont
dim fntHashtag as xpFont
dim i as Integer
engine.getFontByName("Tweet Name1"�, fntNormal)
engine.getFontByName("Tweet Name"�, fntHashtag)
Dim message As String() = Split(New Char() {"� "c})
Self.GetObjectByName("Tweet"�, Tweet)
Tweet.Clear()
for i = 0 to 140
if message(i).Substring(0, 1) = "#"� then
Tweet.CurrentFont = fntHashtag
else
Tweet.CurrentFont = fntNormal
end if
next
Tweet.AppendToLine(0, message(i) + "� ")
I got it to go green, and was able to play out the scene, but nothing changed.
Thx again for the help, and sorry if i made some rookie changes,, I'm by no means a good coder!
#XPression