Product(s): ProjectWise InterPlot Organizer Version(s): 10.00.00.42 Environment: N\A Area: Organizer Subarea: N\A Problem Style keywords in design script are causing different line styles to plot out continuous. Using a design script such as the one below: if (style == 1) then style = (0.35, 1.05) ; style = dot else if (style == 2) then style = (1.75, 1.05) ; style = med dash else if (style == 3) then style = (5.08, 1.27) ; style = long dash else if (style == 4) then style = (2.8, 1.05, .7, 1.05) ; style = dot-dash else if (style == 5) then style = (1.4, 1.4) ; style = short-dash else if (style == 6) then style = (2.1, 0.7, 0.7, 0.7, 0.7, 0.7) ; style = dash-dot-dot else if (style == 7) then style = (0.8, 0.7, 1.4, 0.7) ; style = long dash-short dash endif Solution Try chaning the design to the one below: if (first_time) then style_1 = (0.35, 1.05) ; style = dot style_2 = (1.75, 1.05) ; style = med dash style_3 = (5.08, 1.27) ; style = long dash style_4 = (2.8, 1.05, .7, 1.05) ; style = dot-dash style_5 = (1.4, 1.4) ; style = short-dash style_6 = (2.1, 0.7, 0.7, 0.7, 0.7, 0.7) ; style = dash-dot-dot style_7 = (0.8, 0.7, 1.4, 0.7) ; style = long dash-short dash endif Original Author: Van Kendall
↧