fill aray

For Flowcode users to discuss projects, flowcharts, and any other issues related to Flowcode 2 and 3.

Moderators: Benj, Mods

Post Reply
Jaspervdw
Posts: 12
Joined: Fri Dec 12, 2008 4:45 pm
Been thanked: 3 times
Contact:

fill aray

Post by Jaspervdw »

Is it possible to fill the aray image[7] as following:
image= 0x7F,0x88,0x88,0x88,0x7F,0x00,0x00,0x00

User avatar
Benj
Matrix Staff
Posts: 15312
Joined: Mon Oct 16, 2006 10:48 am
Location: Matrix TS Ltd
Has thanked: 4803 times
Been thanked: 4314 times
Contact:

Re: fill aray

Post by Benj »

Hello,

You are trying to fit 8 data values into 7 slots there.

Otherwise yes you can do it like this.

image[0] = 0x7f
image[1] = 0x88
image[2] = 0x88
image[3] = 0x88
image[4] = 0x7f
image[5] = 0x00
image[6] = 0x00

Post Reply