depelos Posted May 22, 2013 Share Posted May 22, 2013 Hello, I'm a bit stuck in such (i guess simple) situation: In my test vopsop i have two inline vops - first creates simple array of integers and second tries to query individual array element. Unfortunately - without success. It seems that only some garbage data is returned. First inline vop code: {int $test_list[] = { 458, 2, 300, 4, 554455455, 11 };}[/CODE]And second:[CODE]{int $out = $test_list[3];}[/CODE]Im attaching example file too. What i'm doing wrong here?vop_vex_array_test.hipnc Quote Link to comment Share on other sites More sharing options...
Guest mantragora Posted May 22, 2013 Share Posted May 22, 2013 (edited) Check the file. 1) Don't use as output name variable that you created in inlineVOP. 2) After you created variable in first inlineVOp and send it to output, to get it in second inlineVOP use name of the input (it's name of the output of first inlineVOP) not the variable name. vop_vex_array_test_FIX.hipnc Edited May 22, 2013 by mantragora Quote Link to comment Share on other sites More sharing options...
depelos Posted May 22, 2013 Author Share Posted May 22, 2013 thank you very much! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.