KB no longer maintained - Voxler is a retired product. Golden Software retired products are still supported, but no longer receive new features or updates. Many of Voxler's features are moving to Surfer . Please contact support@goldensoftware.com with any questions. |
This article contains a sample script for opening an existing VOXB file and adding a Text module, then changing the properties of the Text module.
To run this script:
- Copy the script below, or download the attached BAS file: TextModule.bas.
- In a Windows Explorer window, navigate to C:\Program Files\Golden Software\Voxler 4\Scripter.
- Double click on Scripter.exe to launch Scripter.
- If you copied this script, press Ctrl+A to select all of the existing lines, then press Ctrl+V to paste the copied script over those existing lines. If you downloaded it, click File | Open, select the BAS file from your downloads directory, and click Open.
- Click Script | Run to run the script.
*********
'******************************************************************************************** ' TextModule.bas ' This script opens an existing VOXB file and adds a text module. ' It then changes all the properties of the text. '******************************************************************************************** ' If Voxler is running, retrieve the current instance of Voxler. Otherwise, ' create a new instance of Voxler. Function VoxlerApplication() On Error Resume Next Set VoxlerApplication = GetObject(, "Voxler.Application") If Err.Number <> 0 Then Set VoxlerApplication = CreateObject("Voxler.Application") End If On Error GoTo 0 End Function Sub Main 'Retrieve running instance of Voxler or create a new instance of Voxler Dim VoxlerApp As Object Set VoxlerApp = VoxlerApplication() 'Make Voxler visible VoxlerApp.Visible = True 'Access CommandApi Set CommandApi = VoxlerApp.CommandApi 'Open an existing file CommandApi.Construct ("Open") CommandApi.Option ("Path", VoxlerApp.Path+"\Samples\Gold (ScatterPlot).voxb") CommandApi.DoOnce() 'Add a text module CommandApi.Construct("CreateModule") CommandApi.Option ("Type", "Text") CommandApi.Do() 'Change the text that is displayed in the text to two lines of text CommandApi.Construct ("ModifyModule") CommandApi.Option ("Module", "Text") CommandApi.Option ("TextText", "text in the map coordinates" + vbCrLf + "Multiple lines") CommandApi.Do() 'Change the text X position 'This positions the location of the text in the X map coordinates. CommandApi.Option ("TextXPos", "50") CommandApi.Do() 'Change the text Y position 'This positions the location of the text in the Y map coordinates CommandApi.Option ("TextYPos", "50") CommandApi.Do() 'Change the text Z position 'This positions the location of the text in the Z map coordinates CommandApi.Option ("TextZPos", "50") CommandApi.Do() 'Change the text multiple line justification 'This is 0, 1, or 2. 0 is left. 1 is center. 2 is right. CommandApi.Option ("TextJustification", "1") CommandApi.Do() 'Change the text size 'This is between 4 and 72 CommandApi.Option ("TextSize", "20") CommandApi.Do() 'Change the text color CommandApi.Option ("TextColor", "Plum") CommandApi.Do() 'Change the text font to Times New Roman CommandApi.Option ("TextFont", "Times New Roman") CommandApi.Do() End Sub
Updated February 9, 2018
Comments
0 comments
Please sign in to leave a comment.