Array

Just starting out? Need help? Post your questions and find answers here.
loulou2522
Posts: 51
Joined: Wed Mar 18, 2015 5:52 am

Array

Post by loulou2522 »

I want to pass an array from spiderbasic to javascript

Code: Select all

Dim myarray.s(2)
myarray(1)="TOTO"
myarray(2)="TITI"


Procedure java( tableau(2) )
!alert v_tableau(1);
EndProcedure 

java(myarray(2))
But that's doesnt'work
User avatar
Peter
Posts: 1093
Joined: Mon Feb 24, 2014 10:17 pm
Location: 127.0.0.1:9080
Contact:

Re: Array

Post by Peter »

Post Reply