Search found 182 matches

by sideshowbond
24 Jan 2019, 14:09
Forum: Titan Macro Library
Topic: Question about macros
Replies: 7
Views: 8338

Re: Question about macros

Have you checked the content of the palette (View/Open + Palette). I haven't checked the output in Capture but the content looked as expected. Yes, <step>ActionScript.SetProperty("Palette.CurrentPaletteHandle", handle:"paletteHandleUN=113")</step> is to set the current palette ak...
by sideshowbond
24 Jan 2019, 13:57
Forum: Avolites TitanOne Support
Topic: Titan One "build in" Capture on separate computer
Replies: 3
Views: 4800

Re: Titan One "build in" Capture on separate computer

Yes, you can. Export the Capture file from within Titan. Install the Capture Demo, set up an artnet (or better sACN) connection and load the exported Capture file. You can also use the project console link which is a way send values back into Titan (especially position). Also if you rearrange fixtur...
by sideshowbond
24 Jan 2019, 13:51
Forum: Avolites Consoles
Topic: Rate Tap
Replies: 7
Views: 4213

Re: Rate Tap

To my knowledge you can't tap a rate master even though the key suggests so. Try imagining how tapping a rate of 50% would look like. Unfortunately you cannot assign both a BPM and a rate master to the same playback. You can assign a BPM master and use the rate grand master though. I do that occasio...
by sideshowbond
24 Jan 2019, 08:02
Forum: General Discussion
Topic: How to work on a showfile without console
Replies: 14
Views: 17804

Re: How to work on a showfile without console

Of course you can. You'll see how when you start the software.
by sideshowbond
23 Jan 2019, 23:26
Forum: Titan Macro Library
Topic: StorePaletteMode
Replies: 1
Views: 4736

StorePaletteMode

How would I go on about using ActionScript.SetProperty(Palette.StorePaletteMode,[value]) in a macro? When running the API get command I get 2 as a result which would make me assume the modes are 0,1,2 (normal, shared, global) however I struggle to set the property via macro. I get the following in t...
by sideshowbond
23 Jan 2019, 22:25
Forum: Titan Macro Library
Topic: Palette Transition - Wipe?
Replies: 2
Views: 5548

Re: Palette Transition - Wipe?

Actually there is such a thing. Direction in the pattern selection menu (the odd/even button).

I've scripted a handful of macros to change direction on the fly.
https://www.avolites.de/wiki/macros:example:programmerdirection
by sideshowbond
23 Jan 2019, 22:13
Forum: Titan Macro Library
Topic: Question about macros
Replies: 7
Views: 8338

Re: Question about macros

try this <sequence> <step>Programmer.Editor.ClearAll()</step> <step>Group.RecallGroupNumeric(101)</step> <step>Palette.ApplyPalette("paletteHandleUN=100", false)</step> <step>Group.RecallGroupNumeric(102)</step> <step>Palette.ApplyPalette("paletteHandleUN=100", false)</step> <ste...
by sideshowbond
23 Jan 2019, 16:06
Forum: Titan Macro Library
Topic: Question about macros
Replies: 7
Views: 8338

Re: Question about macros

Your macro tries to reference to the actual location of the handle. In this case that would be page 2/handle 2 for your red palette Palette.ApplyPalette("Location=Colours,2,2", false)</step> If you want to refer to user numbers you can use Palette.ApplyPalette("paletteHandleUN=100&quo...
by sideshowbond
13 Jan 2019, 07:40
Forum: Titan Macro Library
Topic: Selection.Context.Programmer.Direction vs Selection.Context.Global.Direction
Replies: 0
Views: 8995

Selection.Context.Programmer.Direction vs Selection.Context.Global.Direction

what's the main difference between the 2 properties? Both seem to function when busking in the programmer.
Selection.Context.Programmer doesn't toggle the option in the pattern selection menu but that's about the only difference I coud spot so far.
by sideshowbond
07 Jan 2019, 18:45
Forum: General Discussion
Topic: Titan Mobile Wing
Replies: 3
Views: 5209

Re: Titan Mobile Wing

feel free to but I know they are aware of this and last time I asked there was no plans to make one (there isn't for the TT Wing either though you can use the Arena panel for that).

But again, feel free to ask them, little strokes fell big oaks.
by sideshowbond
06 Jan 2019, 23:23
Forum: General Discussion
Topic: Titan Mobile Wing
Replies: 3
Views: 5209

Re: Titan Mobile Wing

sadly there is not
by sideshowbond
06 Jan 2019, 15:24
Forum: Titan Macro Library
Topic: select all running shapes
Replies: 4
Views: 6013

Re: select all running shapes

awesome, thanks Nic.

My assumption was that it would basically invert the boolean result which pretty much lines up with your explanation. I just wanted to be sure :)
by sideshowbond
06 Jan 2019, 00:13
Forum: Titan Macro Library
Topic: select all running shapes
Replies: 4
Views: 6013

Re: select all running shapes

ok, I don't wanna say I fully understood but I see where this is going. 2 questions at this point: - what is the exclamation mark in the step conditions for? - this selects both shapes from playbacks and the programmer. Which is what I was after, thank you. Is there - additonally - a way to exclusiv...
by sideshowbond
05 Jan 2019, 00:09
Forum: Titan Macro Library
Topic: Fan Curve active binding
Replies: 7
Views: 7824

Re: Fan Curve active binding

ignore that, I just figured out
by sideshowbond
03 Jan 2019, 23:43
Forum: Titan Macro Library
Topic: Fan Curve active binding
Replies: 7
Views: 7824

Re: Fan Curve active binding

I thought making a fan toggle would be a nice addition to this however again I struggle with the active binding (without feedback such button would be worthless). Programmer.Editor.Fixtures.Fan.ToggleFan() to toggle the fan and I figured as much as Programmer.Editor.Fixtures.Fan.FanModeEnabled would...