TextItem.Position = Array (100,100) doesn't work with CS3

Bugs and Anomalies in Photoshop excluding Scripting and Actions

Moderators: Tom, Kukurykus

Widgets19

TextItem.Position = Array (100,100) doesn't work with CS3

Post by Widgets19 »

why Textitem.Position = Array (100,100) on vb 2005... error point the Array as cause of error always..
Widgets19

TextItem.Position = Array (100,100) doesn't work with CS3

Post by Widgets19 »

vb.net or vb 2005 doesn't support a variant nor currency data type.. which use by array (,) in vb 6... what i've done is I use object data type in exchange of variant... it goes like this....



Dim Location() As Object = {100,100}
wText.TextItem.Position = Location




i hope this thing helps other...