I would like to know if you can connect different text boxes so the text will
flow from one to the next.
I want to connect text boxes on different slides.
Luc - 18 Sep 2006 07:13 GMT
Momnotjon,
Not possible i'm afraid in PPT 2003.

Signature
Luc Sanders
(MVP - PowerPoint)
>I would like to know if you can connect different text boxes so the text
>will
> flow from one to the next.
>
> I want to connect text boxes on different slides.
John Wilson - 18 Sep 2006 08:46 GMT
You cant but this vba might interest you. Select a

Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> I would like to know if you can connect different text boxes so the text will
> flow from one to the next.
>
> I want to connect text boxes on different slides.
John Wilson - 18 Sep 2006 08:49 GMT
Sorry I didnt mean to post that!
This vba cuts lines beyond 6 from a placeholder that is selected and pastes
it into a placeholder on the target slide. Note the traget slide must exist
and be a title + text layout. This is pretty bare bones code and if you know
vba you can maybe play with it.
Sub linecut()
Dim imaxlines As Integer
Dim itarget As Integer
imaxlines = 6 'change the value if needed
itarget = InputBox("Target slide?")
On Error GoTo Err
With ActiveWindow.Selection.ShapeRange.TextFrame.TextRange
.Copy
.Lines(imaxlines + 1, .Lines.Count).Delete
End With
With
ActivePresentation.Slides(itarget).Shapes.Placeholders(2).TextFrame.TextRange
.Paste
.Lines(1, imaxlines).Delete
End With
Exit Sub
Err:
MsgBox ("Error, is anything selected?")
End Sub

Signature
Did that answer the question / help?
_____________________________
John Wilson
Microsoft Certified Office Specialist
http://www.technologytrish.co.uk/ppttipshome.html
> I would like to know if you can connect different text boxes so the text will
> flow from one to the next.
>
> I want to connect text boxes on different slides.