Any way to move the text box?

Hi there,

I'm completely new to code but I'm having fun so far with Pulp looking at the tips on here to try and pull a small game idea together. One thing I'd really like to do is move the text box to the bottom of the screen when you interact with a sprite rather than have it appear in the middle. Is that possible?

Would appreciate any tips on how to make that work. Thanks!

There is a way, but I can't think of the coding right now. I think you need to "tell" an x,y coordinate to "say" whatever it is you want in the text box. Something like that.

1 Like

you can specify (x,y,w,h) example:

on interact do
say "Hello" at 2,9,19,3
end

1 Like

That worked perfectly! Thanks so much for your help

1 Like