Search found 174 matches

by Stan
Sat Jan 16, 2021 8:22 pm
Forum: Scripting
Topic: How do we help with scripting docs and examples?
Replies: 24
Views: 10958

Re: How do we help with scripting docs and examples?

So I thought that the documentation was wrong. However, there are actually 2 methods named DeleteKeysAtFrame. The code is actually using the one defined on MohoLayer, not MohoDoc The search is simple text-to-text matching, nothing fancy. There's no way the search can identify if the matching method...
by Stan
Sat Jan 16, 2021 6:03 am
Forum: Scripting
Topic: Timeline Markers Tool
Replies: 1
Views: 3112

Timeline Markers Tool

Create a number of timeline markers with the interval of your choice.



Download here: http://mohoscripts.com/script/sz_timeline_markers_tool
by Stan
Mon Jan 11, 2021 7:30 pm
Forum: Scripting
Topic: Layer Selection Buttons
Replies: 5
Views: 5510

Re: Layer Selection Buttons

Yeah, I would love to see more opportunities for scripts - not just tools and buttons, but also panels, floating and dockable.
by Stan
Mon Jan 11, 2021 2:40 am
Forum: Scripting
Topic: Layer Selection Buttons
Replies: 5
Views: 5510

Layer Selection Buttons

This tool allows you to assign any layer in the project to a button for quick selection and visibility control.



Download link: http://mohoscripts.com/script/sz_layer_ ... on_buttons
by Stan
Sun Jan 10, 2021 4:11 pm
Forum: Scripting
Topic: Bone Selection Buttons Tool
Replies: 11
Views: 8222

Re: Bone Selection Buttons Tool

1 - If the bones have certain characters in the name like '-', the group selection does not work 2 - The tool allows empty groups to be created - if you click and create without any bones selected That is fixed now, thank you Sam! The link is the same: http://mohoscripts.com/script/sz_bone_selectio...
by Stan
Sun Jan 10, 2021 5:05 am
Forum: Scripting
Topic: Bone Selection Buttons Tool
Replies: 11
Views: 8222

Re: Bone Selection Buttons Tool

To answer all "why?" questions, I can tell you that the tool has a pretty long story. It's actually the 3rd version. This is what the first version looked like: http://mohoscripting.com/uploads/1/search-bone.png And this is the v2: http://mohoscripting.com/uploads/1/select-bones-by-names.p...
by Stan
Sun Jan 03, 2021 7:45 pm
Forum: Scripting
Topic: SZ Mark Points
Replies: 5
Views: 5462

SZ Mark Points

Image

Marks the locations of all points in the current vector layer.



Download here: http://mohoscripts.com/script/sz_mark_points
by Stan
Wed Dec 30, 2020 1:51 am
Forum: General Moho Discussion
Topic: Save As Template?
Replies: 9
Views: 4052

Re: Save As Template?

The "File > Save As Template" command is what you use to populate the "File > New From Template" menu. :) You can create a set of projects that you use most of the time to quickly start with. If you find yourself doing the same sequence of steps over and over again when you creat...
by Stan
Tue Dec 29, 2020 2:35 pm
Forum: Scripting
Topic: Bone Selection Buttons Tool
Replies: 11
Views: 8222

Bone Selection Buttons Tool

Buttons that can be assigned for quick selection of bones.

Image



Download here: http://mohoscripts.com/script/sz_bone_selection_buttons
by Stan
Tue Dec 22, 2020 3:29 pm
Forum: General Moho Discussion
Topic: I've got some news...
Replies: 86
Views: 125219

Re: I've got some news...

Awesome news! I couldn't even imagine such a wonderful scenario. Congratulations!
by Stan
Tue Nov 17, 2020 5:27 pm
Forum: Scripting
Topic: ScriptInterface:CreateShape - any idea why the default frame is -1000000?
Replies: 3
Views: 2599

ScriptInterface:CreateShape - any idea why the default frame is -1000000?

Please take a look at the ScriptInterface:CreateShape method. The default value for the frame is -1000000. Any idea why? :)

Can that be the root cause for the notorious negative keyframes that can significantly slow down the performance?
by Stan
Mon Jun 08, 2020 4:06 pm
Forum: Scripting
Topic: Button script to swap the view to Wireframe and back
Replies: 9
Views: 5240

Re: Button script to swap the view to Wireframe and back

velu wrote: Mon Jun 08, 2020 8:00 am Hi, When selecting "swap view mode" image layer also hiding. Is it possible only the selected object will be in wireframe mode like layer visible on/off.
You can try changing the line 51 to:

Code: Select all

SZ_SwapViewMode.modeToSwap = MOHO.LDQ_WIREFRAME + MOHO.LDQ_IMAGES
by Stan
Thu Jun 04, 2020 3:27 am
Forum: Scripting
Topic: Button script to swap the view to Wireframe and back
Replies: 9
Views: 5240

Re: Button script to swap the view to Wireframe and back

toonscale , you can easily customize the script for your own preferences. Open the script's .lua file with a "plain text" editor (I recommend Notepad++ ), and find the following line: SZ_SwapViewMode.modeToSwap = MOHO.LDQ_WIREFRAME (If your text editor is capable of showing line numbers, ...
by Stan
Tue Jun 02, 2020 1:16 am
Forum: Scripting
Topic: Button script to swap the view to Wireframe and back
Replies: 9
Views: 5240

Re: Button script to swap the view to Wireframe and back

Is it possible while working "Transform point tool" if we press "swap view mode" (with assigned shortcut key) and when release return to "Transform point tool" selection instead of "swap view mode" tool selection. Many thanks. That's exactly how it works now....