Hey Kristina
I really hope that I understand your question correct. I understand it like you want to export all the single line text and multiline text from an AutoCad drawing….?
If so, I would do some coding in MS Words Visual Basic (VBA) , simply because I cant remember any lisp that will do your job.
Steps:
Open MS Word and then open Visual basic from the toolmenu: “Functions“, “Macros” ,
“Edit in Visual Basic”.
Insert a “Modul” in VBA from the toolmenu “Insert”. (In the window “Project Explorer” in VBA, you can select if you want to apply the Modul to MS Word for ever, or just to the opened document)
Copy the following code into your new Modul.:
Private AC As Object
Private mspace As Object
Sub Transfer_ACText_To_Word()
Dim Value As Object
Set AC = Nothing
On Error Resume Next
Set AC = GetObject(, "AutoCAD.Application"

If Err <> 0 Then
Set AC = CreateObject("AutoCAD.Application"

MsgBox "You have to open a dwg. file in AutoCad " & _
"first and let the commandline stay empty"
Exit Sub
End If
AC.Visible = True
Set doc = AC.ActiveDocument
Set mspace = doc.ModelSpace
For Each Value In mspace
With Value
If StrComp(.EntityName, "AcDbMText", 1) = 0 Or StrComp(.EntityName, "AcDbText", 1) = 0 Then
Selection.TypeText Text:=.TextString
Selection.TypeParagraph
End If
End With
Next Value
MsgBox "Finished"
End Sub
You can now close VBA.
Open AutoCad and the drawing that contains the text you want to export.
Move to MS Word.
Choose “Macros…” from the toolmenu: “Functions“, “Macros”
A dialogbox appears where you select “Transfer_ACText_To_Word”
Regards to you Kristina
Write back on troubles with the code or if I totally have misunderstood something seriously (-: