Hi all,
I may be missing something simple, but I can't seem to figure this out from the API documentation or any online search. I want to send an array of integers out the outlet of an external as a list, eg - a message box will receive a list of individual integers all at once. I thought I had it, but it seems that my list is actually just a repetition of a single item from the list - the first value held in the array.
If at all possible, could someone please explain how I can get something like this: myArray[16] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15}; to be dumped out an outlet so that a message box connected to that outlet will show this: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15?
As I said, this could be really obvious once I see it, but I'm only beginning to venture into building externals and despite C itself being relatively familiar, this is really confusing the hell out of me.
Thanks.