Search found 262 matches

by kimwida
02 Apr 2025, 18:41
Forum: Titan Macro Library
Topic: Multiple selection in macro
Replies: 1
Views: 39193

Re: Multiple selection in macro

I usually generate macro codes for this kind of problem.
Like this.

Code: Select all

for i = 1, 150, 1 do
       change fade time of playback i
       i = i + 1
end
by kimwida
02 Apr 2025, 18:23
Forum: Titan Macro Library
Topic: Changing group patern direction
Replies: 1
Views: 3981

Re: Changing group patern direction

<step pause="0.01">Group.RecallGroup( Handles.GetHandle("Groups",0,0) )</step> <step pause="0.01">Command.RunCommand("PATTERN 1 IN 3")</step> <step pause="0.01">ActionScript.SetProperty.Enum("Selection.Context.Global.Direction","Verti...
by kimwida
02 Apr 2025, 16:44
Forum: Titan Macro Library
Topic: Replace colour palette
Replies: 1
Views: 975

Re: Replace colour palette

You seem to have some problems with the group. But you can use selecting fixture instead of group. This is from my code which is working well. <step pause="0.01">ActionScript.SetProperty.Boolean("Programmer.BlindActive", true)</step> <step pause="0.01">Programmer.SetBli...
by kimwida
02 Apr 2025, 16:33
Forum: Titan Macro Library
Topic: Create pallets macro
Replies: 1
Views: 188

Re: Create pallets macro

This is from my code which generate some palettes. And it works well. <step pause="0.1">ActionScript.SetProperty.Enum("Palette.MinimumPaletteMode", "Global")</step> <step pause="0.1">ActionScript.SetProperty.Enum("Palette.RecordMode", "Channel&q...
by kimwida
06 Dec 2024, 00:13
Forum: Titan Macro Library
Topic: Change fixture order of a group
Replies: 2
Views: 3395

Re: Change fixture order of a group

The reason I try to find out to change group's fixture order is that I want to make the order like this.
1,2,3,4,5,5,4,3,2,1 or 5,4,3,2,1,1,2,3,4,5
And I can't select two fixtures at once in command.
But I think I got a hint from you.
Thank you.
by kimwida
05 Dec 2024, 06:15
Forum: Avolites Consoles
Topic: Titan midi controller
Replies: 30
Views: 290689

Re: Titan midi controller

https://kimwida.github.io/ > "Over T2 For Skin"
by kimwida
29 Nov 2024, 03:26
Forum: Titan Macro Library
Topic: Change fixture order of a group
Replies: 2
Views: 3395

Change fixture order of a group

I want to change fixture order of a group including 10 fixtures.
I tried it and it failed.

Code: Select all

<step>Group.SetGroupFixtureOrder(Handles.GetHandle("Groups",0,6),{10,9,8,7,6,5,4,3,2,1})</step>


Please advise me how to use this api.
by kimwida
02 Oct 2024, 02:52
Forum: Avolites Consoles
Topic: T2 Midi devices
Replies: 1
Views: 60207

Re: T2 Midi devices

Hello.
Do you know how to diable T2's MIDI by usb expert?
I tried it but I couldn't find a wayt to diable it on the usb expert.
========================================================
ok. I found a workaround.
I just run my 3rd party midi program prior to running Titan.
by kimwida
30 Sep 2024, 10:52
Forum: Titan Macro Library
Topic: Add midi Trigger
Replies: 16
Views: 26771

Re: Add midi Trigger

Thanks Sebastian Beutel!!! This macro adds midi triggers apc mini mk1's buttons and faders to playbacks windows' first slot to 81 slot and main playback faders. <?xml version="1.0" encoding="utf-8"?> <avolites.macros> <macro id="Add_Trigger_For_APC_MINI_MK1"> <name>Add_...
by kimwida
30 Sep 2024, 04:56
Forum: Titan Macro Library
Topic: Add midi Trigger
Replies: 16
Views: 26771

Re: Add midi Trigger

Hi. I am trying to add midi triggers for my apc mini mk1 thru a macro. I succeed to work midi triggers apc mini buttons with my T2 ver.14.0. But I can't with apc mini faders to main playback faders. I think that I follow the avolites wiki exactly. https://www.avosupport.de/.../triggers... https://ww...
by kimwida
28 Jul 2024, 04:01
Forum: Titan Macro Library
Topic: Is there any API to find out where a playback is active or not?
Replies: 3
Views: 13021

Re: Is there any API to find out where a playback is active or not?

Thanks for the reply.

I am using T2 and trying to implement midi feedback with macros.

But I can't find a way how to use your way to find out a playback is active or not.
by kimwida
27 Jul 2024, 01:35
Forum: Titan Macro Library
Topic: Is there any API to find out where a playback is active or not?
Replies: 3
Views: 13021

Is there any API to find out where a playback is active or not?

Is there any API to find out where a playback is active or not?

I searched 17.0 API documents for it. But I don't think I find it.
by kimwida
22 Mar 2024, 05:24
Forum: Avolites Consoles
Topic: Titan midi controller
Replies: 30
Views: 290689

Re: Titan midi controller

is it possible to store a one shot colour set IN the launchpad so no need of sending commands each time we turn on the launchpad ? As far as I know, it's no way to save something in not only launchpad but also any midi controller. They are needed to be set by a host which could be your console or P...
by kimwida
22 Mar 2024, 05:12
Forum: Avolites Consoles
Topic: Titan midi controller
Replies: 30
Views: 290689

Re: Titan midi controller

Ty7077 wrote:Literally did everything here for my Ak2, I go to refresh the macros and it dosnt work…. What am I doing wrong?


At least you need over T2. It doesn't work with T1.
by kimwida
21 Jul 2023, 04:26
Forum: Titan Macro Library
Topic: Create Groups Macro
Replies: 2
Views: 20760

Re: Create Groups Macro

This one is what I made long before. It will be help to you. <step pause="0.05">Selection.Context.Programmer.SelectFixtures("Fixtures", {1,2,3,4,5,6,7,8})</step> <step pause="0.05">Handles.Groups.ChangePage(0)</step> <step pause="0.05">Group.StoreMenu.StoreOnB...