How do i call a specific list's element ?
Posted: Tue Jun 04, 2013 11:43 am
Code: Select all
NewList key$()
AddElement( key$() )
key$() = "game maker"
AddElement( key$() )
key$() = "pure basic"
AddElement( key$() )
key$() = "workout"
NewMap response$()
response$("game maker") = "game maker response string"
response$("pure basic") = "pure basic response string"
response$("workout") = "workout response string"
; Now we gota also give new options... another map
ForEach key$()
Debug key$()
Next
Debug response$( key$() ) ; Here i tried to insert this instead: key(1), but it errors... idk what to do
(ALSO: is there anyone that is willing to help from time to time on skype ? Forums sometimes don't answer a question)