I'm almost there, now my PressTalk logic for wrapping works, but a new (\n) or (\r) is inserted after each bold word. Can someone take a look at the code I have and see if you can think of a solution to remove the new line portion and make the paragraph wrap nicely
define(&i,integer,0)
define(&j,integer,0)
define(&k,integer,0)
define(&s,string,'')
define(&l,integer,0)
define(&temp,string,'')
&s:= 'If you wish to spend with us on either *March 18th* or *March 19th* for this two-day only event then take the first step to huge savings by visiting your personal page now: *http://helpme.com/TechSupport* '
%&s:=trim(@(7,1,205)) %data
search(&s,'*')
&k:=&k+1
endsearch()
&s:=trim(@(7,1,205))
&l:=length(&s)
&i:=pos('*',&s)
for(&j,1,1,&k)
BeginParagraph(0.0000,&Width,0.0000,'left',0.1667,False)
&temp:=left(&s,&i-1)
show(left(&s,&i-1))
&s:=right(&s,&l-&i)
&i:=pos('*',&s)
setstyle(&style2) %% bold %%
&temp:=left(&s,&i-1)
show(left(&s,&i-1))
&l:=length(&s)
&s:=right(&s,&l-&i)
&l:=length(&s)
%&s:=right(&s,&l-&i)
&i:=pos('*',&s)
setstyle(&style1) %%unbold%%
%show(&S)
EndParagraph()
%Crlf(0.1667)
endfor()
THANKS