Hi,
I want to create a byte array using tclblend.The array may contain values
from 00 to FF
in Java I would do it as follows,
byte b[] = { (byte) 0xFF ,(byte) 0x80};
Can you please tell me how to implement this in tclblend ?
For values less than 7F I have no problems
I say set x [java::new
On Thu, 12 Aug 1999, Suvarna Ayyagari wrote:
> Hi,
>
> I want to create a byte array using tclblend.The array may contain values
> from 00 to FF
>
> in Java I would do it as follows,
>
> byte b[] = { (byte) 0xFF ,(byte) 0x80};
>
> Can you please tell me how to implement this in tclblend ?
>