Jump to content

GVRT

Member
  • Posts

    15
  • Joined

  • Last visited

Posts posted by GVRT

  1. I often mirror boom units from one side to the other and am frustrated by the way that half top-hat accessories mirror across - flipping the accessory vertically (image attached)

     

    I currently use two versions of this accessory for SR and SL but am looking for a cleaner solution.

     

    Can anyone offer an explanation or a solution to this?

     

    Many thanks!

    Mirroring.png

  2. Hello,

     

    I've created some data tags for position labels. I've left justified the text of the label because the content is sometimes long, sometimes short. When I mirror it, I need the text to automatically right justify  - is there a way to achieve this?

     

    See image attatched

     

    I currently use two data tags styles - left and right - to work around this problem, but it's very fiddly.

     

    Thanks in advance 

     

    GV

    Screenshot 2022-01-04 at 12.54.55.png

  3. Hi Pat,

     

    I'm using VW2017 and Michael's script rotates multiple symbols around their individual insertion points for me.

     

    Your script behaves very strangely with multiple symbols. Sometimes it only rotates one of the selected symbols, sometimes it rotates one of the selected symbols but by double the angle that's specified. 

     

    I'm still using your script because it can distinguish between symbols and other objects. The multiple symbol selection would just be the icing on the cake!

     

    Thanks :)

     

     

  4. Ha - I'm unaware of hierarchy!

     

    The bit that's really clever about Pat's script is that it can tell between a symbol and an object that isn't a symbol. That's why I'm using his at the moment. However, as I said, Pat's doesn't work like yours when multiple symbols are highlighted.

     

    I'm aware this isn't just a script order factory so I very much appreciate your guy's help.

  5. Thanks Pat, that works a treat :)

     

    The only thing your script still doesn't do, that Michael's does (who posted at the top of this thread) is rotating multiple symbols at once. Could that be incorporated into your super-script?!

     

    Michael's script quoted below:

     

    Quote


    Procedure InstrumentTurnLeft;
    {Badly scripted by Michael Klaers}
    {Select  instrument(s).  Run the script.  
    All the instruments will keep their insertion points and rotate left 90º}

     


    VAR
        
        SymbolHandle                : Handle;                 
        
        CurrentAngle, xLoc, yLoc     : Real;

      PROCEDURE RotateIt(SymbolHandle:HANDLE);

        BEGIN
        
        GetSymLoc(SymbolHandle, xLoc, yLoc);
        CurrentAngle := HAngle(SymbolHandle);
        HRotate(SymbolHandle, xLoc, yLoc, 90);
        
        END;

    BEGIN
           ForEachObject (RotateIt,((SEL=TRUE)));
    END;

     

    RUN(InstrumentTurnLeft);

     

  6. I’m using VW2017 with Spotlight and I use the ‘rotate left 90 degrees’ command as a keyboard shortcut a lot.
     
    I’d like symbols to automatically rotate around their insertion point but mine don’t when I’ve got a label legend applied to them. When the label legend is applied the symbol rotates around the centre point of the symbol and the legend combined instead. 
     
    I've explored using a vectorscript to help here but haven't got enough knowledge to make it work. I've noticed when I insert a locus on top of the insertion point and highlight both the symbol and the locus, the symbol will rotate around the locus. Could a script: insert locus on insertion point, rotate left 90degs, delete locus
     
    Many thanks in advance!
     
×
×
  • Create New...