text position on page

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have created a simple text line inside a layer. I want to set this to
display vertically along the page. Can't figure it out.
thanks
 
michael said:
I have created a simple text line inside a layer. I want to set this
to display vertically along the page. Can't figure it out.
thanks

Do you mean
Vertically down the page?
L
i
k
e

t
h
i
s
Or
Horizontally along/across the page?
Like this

If the former it could be a bit difficult. I am not aware of a function that
will write text down the page, so it may a need a JS function to read each
character and wrote it to a new line. Possible, but a bit messy.

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
The example would be such that take a line of text and rotate it to the left
90 degrees so it reads from the bottom to the top. Does this make sense?
thanks
Michael

Trevor L. said:
michael said:
I have created a simple text line inside a layer. I want to set this
to display vertically along the page. Can't figure it out.
thanks

Do you mean
Vertically down the page?
L
i
k
e

t
h
i
s
Or
Horizontally along/across the page?
Like this

If the former it could be a bit difficult. I am not aware of a function that
will write text down the page, so it may a need a JS function to read each
character and wrote it to a new line. Possible, but a bit messy.

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
michael said:
The example would be such that take a line of text and rotate it to
the left 90 degrees so it reads from the bottom to the top. Does this
make sense? thanks
Michael

Now i am even more confused

Do you mean that this text
THIS IS MY TEXT
is to read like this
T
X
E
T

Y
M

S
I

S
I
H
T

??

Again, it may a need a JS function to read each character and write it to a
new line.
But doing it in reverse order would also be messy

Maybe someone will jump in here and say that there are functions to do it.

If not, it means some tricky JS code

Read the entire text.
Store it in a array as a string of characters
Read the array in reverse order
As each element is read:
Write the element
Add a line break

Fun progamming, I guess.
Do you want me to try doing it ?
--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
----------------------------------------
 
You would have to create a image of the text.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


michael said:
The example would be such that take a line of text and rotate it to the left
90 degrees so it reads from the bottom to the top. Does this make sense?
thanks
Michael

Trevor L. said:
michael said:
I have created a simple text line inside a layer. I want to set this
to display vertically along the page. Can't figure it out.
thanks

Do you mean
Vertically down the page?
L
i
k
e

t
h
i
s
Or
Horizontally along/across the page?
Like this

If the former it could be a bit difficult. I am not aware of a function that
will write text down the page, so it may a need a JS function to read each
character and wrote it to a new line. Possible, but a bit messy.

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
how do I create an image of the text?

Thomas A. Rowe said:
You would have to create a image of the text.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


michael said:
The example would be such that take a line of text and rotate it to the left
90 degrees so it reads from the bottom to the top. Does this make sense?
thanks
Michael

Trevor L. said:
michael wrote:
I have created a simple text line inside a layer. I want to set this
to display vertically along the page. Can't figure it out.
thanks

Do you mean
Vertically down the page?
L
i
k
e

t
h
i
s
Or
Horizontally along/across the page?
Like this

If the former it could be a bit difficult. I am not aware of a function that
will write text down the page, so it may a need a JS function to read each
character and wrote it to a new line. Possible, but a bit messy.

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
In a image application.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


michael said:
how do I create an image of the text?

Thomas A. Rowe said:
You would have to create a image of the text.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage

http://www.Ecom-Data.com
==============================================


michael said:
The example would be such that take a line of text and rotate it to the left
90 degrees so it reads from the bottom to the top. Does this make sense?
thanks
Michael

:

michael wrote:
I have created a simple text line inside a layer. I want to set this
to display vertically along the page. Can't figure it out.
thanks

Do you mean
Vertically down the page?
L
i
k
e

t
h
i
s
Or
Horizontally along/across the page?
Like this

If the former it could be a bit difficult. I am not aware of a function that
will write text down the page, so it may a need a JS function to read each
character and wrote it to a new line. Possible, but a bit messy.

--
Cheers,
Trevor L.
[ Microsoft MVP - FrontPage ]
MVPS Website: http://trevorl.mvps.org/
 
Back
Top