Combo to Combo
This example shows how to fill ComboBox 2 with Text & Data after selecting a Unique Category from Combo Box 1.
It will show you how to use simple tables.
Right-click to Download APZ file.
Feel free to comment.
|
|||||
|
Download Free Games ![]() |
Combo to ComboThis example shows how to fill ComboBox 2 with Text & Data after selecting a Unique Category from Combo Box 1. It will show you how to use simple tables. Right-click to Download APZ file. Feel free to comment. 2 comments to Combo to ComboLeave a Reply |
DOWNLOAD THIS TOOL ![]() |
|||
|
Copyright © 2012 Autoplay Media Studio Examples & Scripts - All Rights Reserved |
|||||
buenas tardes…
tengo un problema con el “for” ya mi autoplay version 8, me esta generando un
error en donde no me deja compilar la sentencia anexo en onshow for i,v in tCategory do
y al terminar de cargar no me alimento los combobox..
por favor alguien que me help… sera que hay que habilitar una opcion adicional para
que corra sin proble el for .. gracias
Hi Arley,
For Version 8, you need to change some bits of the code in for… do LOOPS ONLY.
For example in 7.5.
for x, y in tMyTable do
… something here
end
Here is what you change in Version 8.
for x,y in pairs(tMyTable) do
…something here
end