Computer Science Canada Loading multiple images of similar names in an array |
Author: | JakeTakeLake [ Sat Apr 13, 2013 2:56 pm ] | ||||
Post subject: | Loading multiple images of similar names in an array | ||||
What is it you are trying to achieve? I'm trying to load multiple images of similar names in an array. Describe what you have tried to solve this problem I tried using intstr(i) to convert the array number to a string. But, I'm having trouble adding it to the file location. see code Post any relevant code (You may choose to attach the file instead of posting the code if it is too long) <Answer Here>
Also, here's my working code that I'm trying to shorten.
Please specify what version of Turing you are using 4.1.1 |
Author: | DemonWasp [ Sat Apr 13, 2013 3:06 pm ] |
Post subject: | RE:Loading multiple images of similar names in an array |
Use + for string concatenation. It's only put that allows commas (and similar functions). |
Author: | JakeTakeLake [ Sat Apr 13, 2013 5:31 pm ] |
Post subject: | Re: RE:Loading multiple images of similar names in an array |
DemonWasp @ Sat Apr 13, 2013 wrote: Use + for string concatenation. It's only put that allows commas (and similar functions).
It works! Thanks! |