ok its my first topic as iam a new adventure maker user and iam trying some basic things with vba script.
here is my problem
i have a simple project with 3 frames.
its frame has a hotspot that when i click it a variable called MYSCORE takes a new value (ex MYSCORE = MYSCORE + 5)
as i want to see my score in every frame i used the:
i = Action.GetMergedTextIndex
Text(i).Caption="Your Score: "+CStr(MYSCORE)
so when i click all 3 hotspots i have the MYSCORE = 65
thats the point i want to END the game so i add to every one of 3 hotspots not only the MYSCORE = MYSCORE + number but another line with:
If MYSCORE = 65 then Action.GoToFrame "end"
where "end" is the the name of my fourth and last frame
so every works fine exept that when i reach 65 iam moved to "end" frame but also see that stupid message:
control array element "1" doesn't exist
which i don't know how to solve
Please if anyone can help my sent a reply.
Thanks