yup, plus text edit your way to this function here:

fnBitmapStrip()

it prolly looks something like this:

Code:

Function fnBitmapStrip()
$fnBitmapStrip = "
XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
"
EndFunction



What you should do is pay special attention to how the double-quotes are laid-out, to be safe, arrange them to look like this:

Code:

Function fnBitmapStrip()
$fnBitmapStrip = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
EndFunction



The other thing that can happen is that all the lines get "scrunched" together, and they are longer (much longer) than say 80 bytes each. In your text editor, they will extend past the right hand window. If this has happened, try re-pasting it from where-ever you got the code from.

And advise after trying what Jochen and I recommend.