Search found 8111 matches

by synthsin75
Fri Jan 12, 2024 12:33 am
Forum: Feature Request Discussions
Topic: Select Child/Parent Bones + Shortcut
Replies: 25
Views: 145273

Re: Select Child/Parent Bones + Shortcut

I kept thinking there was a shortcut to select up the bone chain but I couldn't find any reference to it when I looked.

Another reason to have a fully searchable or downloadable user manual.
by synthsin75
Thu Jan 11, 2024 5:43 am
Forum: Feature Request Discussions
Topic: Select Child/Parent Bones + Shortcut
Replies: 25
Views: 145273

Re: Select Child/Parent Bones + Shortcut

Selecting a bone is one-thing... You still then have to manipulate it, and this is where the selection will potentially change again - once you mouse down. That's true. Maybe need an option for bone selection to be [x] Sticky. So that you need to Esc (or similar) to deselect. Also, I would like to ...
by synthsin75
Thu Jan 11, 2024 12:58 am
Forum: Feature Request Discussions
Topic: Select Child/Parent Bones + Shortcut
Replies: 25
Views: 145273

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: 5943

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: 19425

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: 113
Views: 215774

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: 113
Views: 215774

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: 11104

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: 113
Views: 215774

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: 11492

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: 11492

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: 7437

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: 24917

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...