Can you provide more details about what functions are giving the error, and what you tried to replace it with? I haven't used PV8 in some time, so I'm not sure about the current status of the API.
Thanks for getting back to me about this. I appreciate it sooo much, I really do.
This is what the file has when I downloaded it.
--called once at the start of the program.
function Init()
apiBridge:ChangeBackgroundColor(0)
apiBridge:RebuildScreenBuffer()
--apiBridge:PlaySong ( false )
end
The PV8 manual has these functions under v0.7.0a API changes, so I altered it to
--called once at the start of the program.
function Init()
apiBridge:BackgroundColor(0)
apiBridge:RedrawDisplay()
--apiBridge:PlaySong ( false )
end
But it has the same error as above. Line 54 is the BackgroundColor function.
I worry that i'm going to pass invalid arguments into these functions that are all defined somewhere else. How do I find out whether the background color 0 is even initialized? I would have gone and checked that next, but the BackgroundColor function is hidden away somewhere in PV8 I guess, and I'm not sure how I would go looking for it. Sorry for my confusion, but I don't know what I would do next to find the problem.