2007-06-13 06:42 PM
2007-09-21 03:03 PM
James wrote:Because you pay to!
Not fixed in 1086.
You'd think a new tool that failed utterly in a plurality of cases would get more urgent attention.
Remind me, why should I upend my workflow every twelve months?
@#$%
2007-10-23 08:44 PM
James wrote:Another workaround discovered:
My experience is that when the top, always the top, view is turned off, the layID fails to resolve. I let them know. IEs are still very buggy IMO.
My workaround is to use multiple single-sided IEs with the markers stacked. Real convenient. I believe this is similar to the Tom Waltz pre-11 method.
2007-10-24 12:54 AM
James Murray wrote:guys, that is a fairly simple bug in library part itself (not a really clever GDL programming on GS side )...
My experience is that when the top, always the top, view is turned off, the layID fails to resolve. I let them know. IEs are still very buggy IMO.
My workaround is to use multiple single-sided IEs with the markers stacked. Real convenient. I believe this is similar to the Tom Waltz pre-11 method.
Another workaround discovered:
If you need to eliminate the top viewpoint, you can rotate the entire marker (not just "Rotate Marker" via the pet palette) and readjust the limit polyline as needed. AC assumes that the left-pointing viewpoint is now West, the down-pointing viewpoint is now South, etc.
Just make sure that what was originally the top-pointing viewpoint remains.
2007-10-24 12:56 AM
2007-10-24 01:32 AM
2007-10-24 05:56 PM
2007-10-24 09:34 PM
if gs_inner_text_int = 1 then ! Referred Drawing if gs_inner_text_layout_id then if (iNumItems = 1) then !! GS Fail !!!!!!sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_1 !! Kalocay Fix if AC_DrawingGUID_1#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_1 if AC_DrawingGUID_2#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_2 if AC_DrawingGUID_3#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_3 if AC_DrawingGUID_4#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_4 else if bHaveContent2 then separator = stSeparator else separator = "" endif !! GS Fail !!!!!!!!sInnerText2 = sInnerText2 + separator + "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_1 !! Kalocay Fix if AC_DrawingGUID_1#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_1 if AC_DrawingGUID_2#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_2 if AC_DrawingGUID_3#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_3 if AC_DrawingGUID_4#"" then sInnerText1 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_4 endif endif else yada yada yada endifThat section begins on 2D line 114. I think that's all there is to it.
2007-10-24 09:42 PM
2007-10-24 11:05 PM
if gs_inner_text_int = 1 then ! Referred Drawing ! GS error: ! sInnerText1 = "<MARKERDRAWINGNUMBER_R>" + AC_DrawingGUID_1 ! sInnerText2 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_1 ! Kalocay fix (and modified by LJY for klipp): if AC_DrawingGUID_1#"" then sInnerText1 = "<MARKERDRAWINGNUMBER_R>" + AC_DrawingGUID_1 if AC_DrawingGUID_2#"" then sInnerText1 = "<MARKERDRAWINGNUMBER_R>" + AC_DrawingGUID_2 if AC_DrawingGUID_3#"" then sInnerText1 = "<MARKERDRAWINGNUMBER_R>" + AC_DrawingGUID_3 if AC_DrawingGUID_4#"" then sInnerText1 = "<MARKERDRAWINGNUMBER_R>" + AC_DrawingGUID_4 if AC_DrawingGUID_1#"" then sInnerText2 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_1 if AC_DrawingGUID_2#"" then sInnerText2 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_2 if AC_DrawingGUID_3#"" then sInnerText2 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_3 if AC_DrawingGUID_4#"" then sInnerText2 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_4 else
2007-10-25 01:47 AM
! GS error:it means that if you delete view no.1 which is "AC_DrawingGUID_1" the script fails to find the sheet reference (as the view no.1 pointer points to nowhere) and does not attempt to test the rest of views. Therefore the bug was intriguing as it propagated itself in case of deleting view no.1 only.
! sInnerText1 = "<MARKERDRAWINGNUMBER_R>" + AC_DrawingGUID_1
! sInnerText2 = "<MARKERSHEETNUMBER_R>" + AC_DrawingGUID_1