‎2008 Feb 19 6:21 AM
hai any body tell me can we place the text verticalli in a window
in scripts.how it is possible...
‎2008 Feb 19 6:28 AM
I do not this this option is there in Script
But you can put each latter vertically to get vertival text
Eg
S
A
M
P
L
E
If you write each letter in new line you can get vertical text
‎2008 Feb 19 6:28 AM
I do not this this option is there in Script
But you can put each latter vertically to get vertival text
Eg
S
A
M
P
L
E
If you write each letter in new line you can get vertical text
‎2008 Feb 19 6:40 AM
hi,
: POSITION WINDOW
/: POSITION XORIGIN '0' MM YORIGIN '+10' MM
: SIZE HEIGHT '10' MM WIDTH '2' MM
i just giving an idea, in the above position command maintain xorigin as 0 and in size command maintain low width dimension.try this it may come
regards,
pavan t.
‎2008 Feb 19 6:53 AM
hi
good
You can print horizantally. using the following code
You know the total length of your text right.
You need to have conditions to avoid unnecessary spaces.
If &v_text(1)& is not initial.
ph &v_text(1)&
endif.
if &v_text+1(1) is not initial.
ph &v_text+1(1)
enddif.
if &v_text+2(1) is not initial.
ph &v_text+2(1)
enddif.
But we cant rotate letters to left . Not sure . Will explore on it and let you know.
thanks
mrutyun^