...
I just tried the vrmlpad demo and it seems very handy. I'm missing one option though. My 3D app creates fields like coordindex with one number on one line. I did try sitepad pro and in this app I could "reformat" a block of values to fit on a few lines instead of one number on every new line.
...
Is there a way to delete linefeeds for a selection?
...
Try this macros:
BindCommand "Reformat", "Reformat text", "&Reformat", , "shell32.dll#54"
Public Sub Reformat
BeginOperation "Reformating"
For Each nod In StdProtos("IndexedFaceSet").Instances
Set reg = New RegExp
reg.Pattern = "\r\n"
reg.Global = True
txt = nod("coordIndex").Range.Text
txt = reg.replace(txt,"")
nod("coordIndex").Range.Text = txt
txt = nod("coord")("point").Range.Text
txt = reg.replace(txt,"")
nod("coord")("point").Range.Text = txt
Next
EndOperation
End Sub