Search found 8139 matches

by synthsin75
Thu Jan 11, 2024 12:58 am
Forum: Feature Request Discussions
Topic: Select Child/Parent Bones + Shortcut
Replies: 25
Views: 184785

Re: Select Child/Parent Bones + Shortcut

Pretty easy to have a button script, that you can assign a shortcut to, that selects a bone's parent: for i=0, skel:CountBones()-1 do local bone = skel:Bone(i) if (bone.fSelected) then bone.fSelected = false skel:Bone(bone.fParent).fSelected = true end end That would work with the pin bone idea.
by synthsin75
Sat Jan 06, 2024 7:05 pm
Forum: Bug Discussions
Topic: Bone Dynamics receives a large momentary force and runs amok!
Replies: 2
Views: 7448

Re: Bone Dynamics receives a large momentary force and runs amok!

Dynamics only react to the difference in values between one keyframe and the next and the time between them. The larger the change and the shorter the time in between, the larger the reaction. When you untarget a bone, you just need to rotate it to point at the target on that same frame, and then yo...
by synthsin75
Sat Jan 06, 2024 6:46 pm
Forum: General Moho Discussion
Topic: So what are the biggest differences between 13.5 and 14?
Replies: 8
Views: 24511

Re: So what are the biggest differences between 13.5 and 14?

Aside from new features that you may or may not have an immediate use for, the far more accurate workspace display is huge. Things like masking and blend mode changes can be seen without having to render a frame.
by synthsin75
Sat Jan 06, 2024 2:08 pm
Forum: Scripting
Topic: Lost Scripts' Shapes Window (**New** BETA 3) for Moho 14.1 Pro
Replies: 123
Views: 272661

Re: Lost Scripts' Shapes Window (*New* BETA 2) for Moho 14.1 Pro

I tried it with all the same windows undocked, and I'm not seeing that problem here, on Windows 11, version 2 of the script.

It does seem odd that it's selecting the last drawn shape. Not seeing that here. You don't have a custom freehand tool installed, do you?
by synthsin75
Sat Jan 06, 2024 11:18 am
Forum: Scripting
Topic: Lost Scripts' Shapes Window (**New** BETA 3) for Moho 14.1 Pro
Replies: 123
Views: 272661

Re: Lost Scripts' Shapes Window (*New* BETA 2) for Moho 14.1 Pro

I also have a set-up that allows me to (interactively) override the "IsRelevant" function in selected scripts such that they do or don't show as I choose. (And this might well be the basis for implementing something as Wes has suggested re toolset "profiles" for different phases...
by synthsin75
Sat Jan 06, 2024 12:39 am
Forum: How Do I...?
Topic: Layer weirdly Floating and Resizing with Smart Bone
Replies: 3
Views: 13934

Re: Layer weirdly Floating and Resizing with Smart Bone

You either need more keyframes or use layer rotation.

Point motion interpolates in straight lines. So if there aren't enough, it will look like it's shrinking.
by synthsin75
Fri Jan 05, 2024 12:49 am
Forum: Scripting
Topic: Lost Scripts' Shapes Window (**New** BETA 3) for Moho 14.1 Pro
Replies: 123
Views: 272661

Re: Lost Scripts' Shapes Window (*New* BETA 2) for Moho 14.1 Pro

Wow, neat idea for hiding tools at will. And really cool that it shows a preview of the selected shape. EDIT: Building on the idea of showing/hiding tools, seems you'd be able to make a single tool (so it's always available in the tool window) that could store tool "profiles"...groups of t...
by synthsin75
Sun Dec 31, 2023 9:48 pm
Forum: Miscellaneous Chit-Chat
Topic: Customizing Tools panel
Replies: 4
Views: 14614

Re: Customizing Tools panel

Remember, you can hit ctrl+shift+alt+L to reload the scripts and see your changes. Will make any trial and error a little easier.
by synthsin75
Sun Dec 31, 2023 11:49 am
Forum: Miscellaneous Chit-Chat
Topic: Customizing Tools panel
Replies: 4
Views: 14614

Re: Customizing Tools panel

Yes, you can add custom tool groups from the _tool_list.txt in your custom content folder. The Other group is the default for tools that have not been added to the list, below an existing group. You can also manage tool groups through the Preferences>Tool Layout. You have to enable automatic tool li...
by synthsin75
Fri Dec 29, 2023 1:21 pm
Forum: How Do I...?
Topic: "Shortcut Field" in the "create new action" window
Replies: 5
Views: 9433

Re: "Shortcut Field" in the "create new action" window

You can insert the action while the timeline is playing by hitting that shortcut.

But it won't update to show your changes until the timeline plays through a second time.
by synthsin75
Thu Dec 28, 2023 5:03 am
Forum: Feature Request Discussions
Topic: Align objects on same layer, too.
Replies: 28
Views: 30323

Re: Align objects on same layer, too.

My merge vectors script has what you need to find the selected layers in the document: local layers = {} local count = 0 repeat local layer = moho.document:LayerByAbsoluteID(count) if layer then count = count + 1 if (layer:SecondarySelection() and layer:LayerType() == MOHO.LT_VECTOR) then table.inse...
by synthsin75
Wed Dec 27, 2023 10:23 pm
Forum: Feature Request Discussions
Topic: Align objects on same layer, too.
Replies: 28
Views: 30323

Re: Align objects on same layer, too.

If the workflow works, I assume AEseeva's Reset Layer Transform could be made to work over a table of the layers produced by Break Apart and combined with the relevant parts of RT:Break Apart and Merge Vectors. I have too much on my scripting plate at ATM, or I'd volunteer. I thought I might take a...
by synthsin75
Wed Dec 27, 2023 10:20 pm
Forum: How Do I...?
Topic: How to "abondon" a layer?
Replies: 11
Views: 22454

Re: How to "abondon" a layer?

Only one problem, so far my expierence with visibility was a horror. I tried turning off and on some of my layers but it had no effect on time line. I was clicking on those eyes next to my layer... Perhaps you mean a more advanced option where I go to settings of a specific layer and play with visi...