Hello!
I have not been so active in the last time regarding Hollywood. I am currently trying to get back on track and do less working
There is an example in the guide for the AddTab function. It looks like this:
Code: Select all
AddTab(100, 200, 300, 400)
SetFontStyle(#UNDERLINED)
NPrint("Last name\tFirst name\tAge\tGender\n")
SetFontStyle(#NORMAL)
NPrint("Doe\tJon\t34\tMale")
NPrint("Smith\tMaggie\t25\tFemale")
NPrint("...\t...\t...\t...")
Now try to add a Locate instruction to the first line, eg.:
Code: Select all
Locate (50,300)
Do I misunderstand something, or is it a problem?