copy linked text
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
- 
				Preston Shea
- Posts: 73
- Joined: Sat Apr 08, 2006 6:51 pm
copy linked text
how do I script the copying of text in field of one stack to field in another stack keeping formatting of  link text etc.?
			
			
									
									In nova fert animus mutatas dicere formas corpora.
						Re: copy linked text
get and set the htmltext of the field instead of just the text of the field.
			
			
									
									
						- 
				Preston Shea
- Posts: 73
- Joined: Sat Apr 08, 2006 6:51 pm
Re: copy linked text
Great! and thanks. Now for a dumb question:
how do I get the text to display as formatted instead of with <tags>?
			
			
									
									how do I get the text to display as formatted instead of with <tags>?
In nova fert animus mutatas dicere formas corpora.
						Re: copy linked text
Sorry - I should have been more explicit...
-- get the htmltext of the source field into a variable
put the htmltext of field 1 into tHTMLText
-- then store it into the destination field
set the htmltext of field 2 to tHTMLText
			
			
									
									
						-- get the htmltext of the source field into a variable
put the htmltext of field 1 into tHTMLText
-- then store it into the destination field
set the htmltext of field 2 to tHTMLText
- 
				Preston Shea
- Posts: 73
- Joined: Sat Apr 08, 2006 6:51 pm
