Hi, badboi.
This was a perfect little task for a Rhinoscript. See if this works for you:
Option Explicit
'Script written by Damon Sidel
'Script copyrighted by Damon Sidel
'Script version Thursday, September 01, 2011 8:36:04 AM
Call ZoomToText()
Sub ZoomToText()
Call Rhino.Command("_SelAll")
Dim arrObj : arrObj = Rhino.SelectedObjects()
If IsNull(arrObj) Then Exit Sub
Call Rhino.Command("_SelNone")
Dim strObj, done
'Dim arrOpts : arrOpts = Array("Yes", "No")
'Dim arrVals : arrVals = Array(True, False)
For Each strObj In arrObj
If IsText(strObj) Then
Call Rhino.SelectObject(strObj)
Call Rhino.ZoomSelected()
End If
done = Rhino.GetString("Is this the text at which you want to look? (Type 'y' or hit enter to continue.)")
If (done="y") Then Exit Sub
'done = Rhino.GetBoolean("Is this the text at which you want to look?",arrOpts,arrVals)
'If (done=True) Then Exit Sub
Call Rhino.Command("_SelNone")
Next
End Sub