Search found 182 matches

by sideshowbond
21 Jun 2018, 23:31
Forum: Titan Macro Library
Topic: Release playback from playback window and Change icon of the macro (Dynamic color grid)
Replies: 14
Views: 13581

Re: Release playback from playback window and Change icon of the macro

not sure about pictures but you can highlight handles (the way they look like when being copied or moved) via macro I like cascading macros so the way I'd combine the 2 looks like this <macro id="adb.Macros.test.firepb1" name="adb_test_fire PB1"> <description>Releases 1-4, fires ...
by sideshowbond
21 Jun 2018, 22:47
Forum: Titan Macro Library
Topic: TitanId unique?
Replies: 0
Views: 6878

TitanId unique?

do TitanIds only ever get assigned once and gets retired when the item gets deleted? Or do they get used more than once?
by sideshowbond
21 Jun 2018, 22:38
Forum: Titan Macro Library
Topic: Release playback from playback window and Change icon of the macro (Dynamic color grid)
Replies: 14
Views: 13581

Re: Release playback from playback window and Change icon of the macro

<sequence> <step>Playbacks.ReleasePlayback(userNumber: 1, 0, false)</step> <step>Playbacks.ReleasePlayback(userNumber: 2, 0, false)</step> <step>Playbacks.ReleasePlayback(userNumber: 3, 0, false)</step> <step>Playbacks.ReleasePlayback(userNumber: 4, 0, false)</step> <step>Playbacks.FirePlaybackAtLe...
by sideshowbond
21 Jun 2018, 22:10
Forum: Avolites TitanOne Support
Topic: Change shortcut for "Go"
Replies: 3
Views: 4561

Re: Change shortcut for "Go"

@Greg: Space for Go as a standard would be cool though. Not only for T1 but for TM as well. I like using a keyboard :)
by sideshowbond
21 Jun 2018, 00:45
Forum: Titan Macro Library
Topic: copy macro by macroId
Replies: 1
Views: 4456

copy macro by macroId

is there a way to copy a macro from the show library onto a handle using the macro id?
by sideshowbond
21 Jun 2018, 00:22
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

as a workaround I tried <sequence> <step pause="0.001"><menuLink id="Windows.Groups" stack="mainWindowStack" behaviour="PushOrRaise" maximised="True" regionId="secondary" /></step> <step pause="0.001">UserMacros.RecallMacroById(&q...
by sideshowbond
21 Jun 2018, 00:13
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

but you cannot not properly set it that way, you can only cycle between the however many displays you have. And starting point depends on which screen the window has been opened last. Which means I can't pin a window to a specific page. Workspaces can do that so surely there must be a way
by sideshowbond
21 Jun 2018, 00:02
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

thought about something like that :)

Isn't there any workaround you can think of to set regionId? Not being able to at all does make me wonder
by sideshowbond
20 Jun 2018, 23:18
Forum: Titan Macro Library
Topic: Enable/Disable external screen
Replies: 2
Views: 3448

Re: Enable/Disable external screen

excellent, thank you. It is a bit awkward but with this I should theoreticaly be able to specifically open windows on screen 1 and then subsequently move them onto 2 :D If what I tried by hand works via macro as well
by sideshowbond
20 Jun 2018, 22:51
Forum: Titan Macro Library
Topic: Enable/Disable external screen
Replies: 2
Views: 3448

Enable/Disable external screen

I am trying to toggle the external screen via macros.

Code: Select all

ActionScript.SetProperty(System.ExternalDisplay.Enabled,[value])
is asking for a string if I read the log viewer right. What string would that be and what would be the correct syntax.

Cheers
by sideshowbond
20 Jun 2018, 14:55
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

great thanks.

Shame about the regionId. Is there a similar way like MaximiseWindow and then cycle the region?

Also I am trying to implement verticalScrollOffset. How would I go on about that. I tried a couple of options and none seem to work.
by sideshowbond
20 Jun 2018, 01:33
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

also I got <step pause="0.001"><menuLink id="Windows.ShowLibrary" stack="mainWindowStack" behaviour="PushOrRaise" maximised="false" regionId="secondary" /></step> <step>Windows.SetWindowProperty.X("Windows.ShowLibrary", 0)</step> ...
by sideshowbond
19 Jun 2018, 15:17
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

Brilliant, this works great. Thanks a lot! You might have guessed it by now but I am coding a macro that opens and records my workspaces as you can still not import them... pretty sure there will be more questions along the way. One thing I was wondering: does Windows.SetWindowRegion("Windows.P...
by sideshowbond
18 Jun 2018, 10:53
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

now i did. Seems I missed that bit.

Another question: I am trying to record a workspace via macro specifying user number and location at the same time. Possible?
by sideshowbond
17 Jun 2018, 23:53
Forum: Titan Macro Library
Topic: Window Properties Macro
Replies: 17
Views: 13408

Re: Window Properties Macro

just had the time to play again and it seems the macro only works when columns have been set to a number before. When it's set to dynamic the macro doesn't seem to have any effect. Is there a way around that?