1
ASL Scripts / Getting the string of a Text object (shape?)
« on: October 05, 2008, 09:39:59 am »
Hi! Total n00b at ASL (not at programming tho).
I was looking through the .obj exporter script and more or less understood what it's doing. But is there any way of getting the actual text that you write in a Text object? I mean:
textcom {
name { "text04" } //<--- gettable from $shape.name ?
base {
origin { (37.303 1.6854 0) }
}
string { L"iuliyluiy" } //<--- THIS BIT HERE!
I'd probably do sth like:
if ($shape.GetKind() == SHAPE_KIND_TEXT)
{
/* do stuff with the text */
}
Thanks.
I was looking through the .obj exporter script and more or less understood what it's doing. But is there any way of getting the actual text that you write in a Text object? I mean:
textcom {
name { "text04" } //<--- gettable from $shape.name ?
base {
origin { (37.303 1.6854 0) }
}
string { L"iuliyluiy" } //<--- THIS BIT HERE!
I'd probably do sth like:
if ($shape.GetKind() == SHAPE_KIND_TEXT)
{
/* do stuff with the text */
}
Thanks.