Attachment problem

Hi,

I have a richtext field named “xyz”.From a button i am attaching some attachments.but the attachments are not showing in a serial manner.Everytime the attachment is getting attached at first position.How can I change the cursor position to the right??What is the solution.Please help.I am writing the following code–>

@Command([EditGotoField];“xyz”);

@Command([EditInsertFileAttachment])

Subject: attachment problem

Try this:

@Command([EditGotoField];“xyz”);

@Command( [EditRight]; “1” ) ;

@Command([EditInsertFileAttachment]);

Regards

Litty Joseph

Subject: RE: attachment problem

Hi Joseph,

Thanks for your response.But the formalae doesnot executes.

Its giving a message-“Cannot execute the specific command”

Pls help me

Subject: RE: attachment problem

Try @Command([EditBottom]) instead of EditRight I had mentioned earlier.

Regards

Litty Joseph

Subject: RE: attachment problem

Hi,

I have tried with all @commands like editright,editbottom etc.but its showing the same error message.Can you tell me how can i do this using lotus script like notesrichtextnavigator,notesrichtextitem like that??

You suggesstion will be appreciable.Also if u have the code then pls send me.its urgent

Subject: RE: attachment problem

Was the document in Edit mode when you use this button? Otherwise first make it in edit mode using @Command( [EditDocument] ).

Regards

Litty Joseph