Hello,
I am trying to create an e Mail using a button in another email.
I would like to put part of the text in a section, but I do not know how to select only a part of the text
when I use @command([CreateSection]) this creates a section containing all of the body text and whose title is the body’s first line
can you also tell me how to change the section’s name.
Thanks in advance
PS: I am a complete newbie to formula langage programming…
Subject: How to create a section
Hi, wat u will do is, first select the text which u want to be in the section and after selecting just go to menu bar,In that u can find Create menu-----Section----1.Standard Section. 2.Controlled Access Section.I hope u know the difference between those two sections.If not u can see in help.If u stiill didnot understand the difference u can contact me and i will explain u in detail.When u create a section ,by default it takes the first line as the title of the section.And as well as u can find a twistie when u create a section.If u want to rename the section,just right click on the twistie and go to section properties.In that first tab or second tab u can find the title.There u can rename your section.If u r using any buttons ,then u can the @commands to create a section .Other wise manually u can just select the text and create the section and u can rename it as i have mentioned above
Subject: RE: How to create a section
actually, I want the section to be created along with the mail; this is how I create the mail:
@Command([MailComposeMemo]);
@Command([EditGotoField]; “EnterSendTo”);
@Command([EditInsertText]; “Louis Bitterlin/blabla”);
@Command([EditGotoField] ; “Subject”);
@Command([EditInsertText]; “my subject”);
@Command([EditGotoField] ; “Body”);
@Command ([TextBold]);
@Command([TextSetFontColor] ; [DarkBlue]);
@Command([EditInsertText]; “Title1”);
@Command([TextNormal]) ;
@Command([EditInsertText]; @NewLine+ @NewLine+ “blablabla :”+@NewLine+ "- blablabla "+@NewLine+ “- blablabla” +@NewLine+ “- blablabla”+@NewLine+@NewLine+@NewLine);
@Command ([TextBold]);
@Command([TextSetFontColor] ; [DarkBlue]);
@Command([EditInsertText]; “title2”);
@Command([TextNormal]) ;
@Command([EditInsertText]; @NewLine+ @NewLine+ “bla :”+ @NewLine + “bla :” + @NewLine + "bla: "+ @NewLine + "bla: "+@NewLine+ "bla: "+ @NewLine + "bla: "+ @NewLine + "bla: "+ @NewLine + "bla: "+ @NewLine+ @NewLine)
now, what I want is the part under title1 to be in a section. but, when I use @command([CreateSection]) I cant chose what to put in the section