I can't seem to figure out how to manipulate a layers symbology using VBscript. In my code below I'm creating a new polyline shapefile and then adding it to the map (along with a new feature). I want to set a specific colour for this layer, how would I go about doing so?Set TrackRS = CreateAppObject("recordset") lnShape = Preferences.Properties("DataPath") & "\TracksShape\TrackLog" & TrackDte & ".shp" TrackRS.Create lnShape, 3, Application.Map.CoordinateSystem TrackRS.Fields.Append "Length", 5 Set TrackShape = Map.AddLayerFromFile(lnShape) If TrackShape Is Nothing then exit sub TrackShape.Editable = true TrackShape.Records.AddNew ln TrackShape.Records.Update Map.Extent = TrackShape.Extent Map.Refresh TrueThanks,