Combo to Page
Using Combo Box as Navigation to Pages.
This example uses INHERIT OBJECTS from a page. So, the COMBO BOX is inherited by all the pages without effort.
Right click to Download the APZ file.
Feel free to comment.
|
|||||
|
Download Free Games ![]() |
Combo to PageUsing Combo Box as Navigation to Pages. This example uses INHERIT OBJECTS from a page. So, the COMBO BOX is inherited by all the pages without effort. Right click to Download the APZ file. Feel free to comment. 3 comments to Combo to PageLeave a Reply |
DOWNLOAD THIS TOOL ![]() |
|||
|
Copyright © 2012 Autoplay Media Studio Examples & Scripts - All Rights Reserved |
|||||
Thanks, but this spits out an error when I attempt to build it in AMS 8.04:
Error: attempt to call a table value
Stack Traceback:
1 [Globals] Line: 12 in function ‘NyNavi’
2 [Page1 -> On Show] Line: 1 in main chunk
Hi,
When you’re converting AMS 7 to AMS 8, please realize the syntax for LUA script has changed a bit. So you have the error.
Here are the steps:
1. Look for Line 12 in the Globals
2. You’ll find the line ” for something,something in table do ”
3. add this >>>> ” for something,something in pairs(table) do ”
I have added the word pairs.
The error will go.
All For..Loops will have to change by adding the word pairs and bracket the tables.
thanks