Jump to content

Beat Per Light

Member
  • Posts

    9
  • Joined

  • Last visited

Reputation

0 Neutral

Personal Information

  • Location
    France

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Now OK.. Searching a lot and finally... PROCEDURE SetDMXClass; VAR hlayer, h:handle; BEGIN SelectObj(INSYMBOL & INVIEWPORT & (PST='Data XLR5-XLR5')); hlayer := GetParent(FObject); while (hlayer <> nil) do BEGIN h := FInLayer(hlayer); WHILE (h <> NIL) DO BEGIN SetClass(h, '003.Lightning-005.Cables-004 DMX'); h := NextObj(h); END; hlayer:= NextLayer(hlayer); END; END; RUN(setDMXClass); Still open to some feedback...
  2. No... don't get it.... Just the first object is changing class.. I ma trying this... but... PROCEDURE SetDMXClass; VAR h:handle; BEGIN SelectObj(INSYMBOL & INVIEWPORT & (PST='Data XLR5-XLR5')); h:= FSActLayer; BEGIN while h <> nil do SetClass(h, '003.Lightning-005.Cables-004 DMX'); h:= NextObj; END; END; RUN(setDMXClass);
  3. I think I've got it... PROCEDURE SetDMXClass; VAR h:handle; BEGIN SelectObj(INSYMBOL & INVIEWPORT & (PST='Data XLR5-XLR5')); h:= FSActLayer; SetClass(h, '003.Lightning-005.Cables-004 DMX'); END; RUN(setDMXClass); If you have any advices... I'm listening..
  4. Hi, I am trying to learn VectorScript to accomplish some basic tasks for now. For example, in Spotlight, I want to select all plugin-style objects for a type of cable (dmx5) and change the class of all of them. Here's my code. It doesn't throw any errors, but it selects all the cables and doesn't change the class. Does anyone have an idea of what I might be missing here? Thanks. PROCEDURE SetDMXClass; VAR Class: STRING; h:handle; BEGIN SelectObj(INSYMBOL & INVIEWPORT & (PST='Data XLR5-XLR5')); h:= GetParent(FObject); Class := '003.Lightning-005.Cables-004 DMX'; SetClass(h, Class); END; RUN(setDMXClass);
  5. Sorry. Didn’t get the meaning of your answer. English is not my first language. Anyway. I was wondering if there could be a way to create a device in connectCAD from a distributor who have in an out plug in already. I understand that it mean to have the same connector database. But anyway. It could be a good news improvement. An other thing, I have created a lot of device with some photos (back and front), some color tag to stick to the plot standard of our company. I some other dynamic text. One cool thing could be to select a device symbole in the device builder and import it from the database devices. It could be a great improvement to earn time when we create new devices.
  6. Cannot find this topic. Could you share the link please. Thanks.
  7. Hi. I am trying to use connectCAD for power planning on event with Spotlight. The problem I have is to Tag a Distributor like a 63A Distro Box (with electrical component) as a Equipment Item in order to link it with the connectCAD Schematic. The equipment item plugin doesn't recognise the distributor as a plugin object (appearing in red when the tool is hovered over it) While this process functions properly with lighting devices, it does not seem to with distributors. Is there a potential solution for achieving this? Alternatively, might it necessitate development from your teams? Thank you.
  8. Sorry. That’s the daisy chain mode. And yes I use the current version of cable tool.
  9. Hi. I was using cable tool for DMX network. The thing is, when I do a univers in the serie mode with cable tool, it work but take a lot of time to calculate the differents part before I can do an other one. Is that something others experiment too?
×
×
  • Create New...