We’re collecting information regarding possible new SmartMouth features.
Here are a couple items we’re considering. We’d love to have your feedback so that we can determine where to best apply our resources.
1. Additional languages. This would only apply to the user interface at the moment (and not the help documentation).

Loading ...
2. Keyframe Frequency Control. This would allow you to limit or reduce how many keyframe are produced in Flash Pro by SmartMouth. Some people have noted that by default, SmartMouth outputs a lot of keyframes. This is fine if you’re animating on 1s (24-30 fps), but if you’re animating on 2s (12 fps), the mouths move too quickly in relation to the rest of the animation. In response, we released the Convert to 2s and Convert to Ns extensions to convert keyframes to different frequencies. These extensions can be used with or without SmartMouth. This proposed new feature, however, would be built into SmartMouth and would choose which keyframes to omit based on how unlikely SmartMouth believes they are to a match, rather than just arbitrarily removing keyframes.
It might look something like this:


Loading ...
Update (11/16/2011):
The Keyframe Frequency feature has been added in version 1.1.
Thanks in advance for your input!
One of the absolute coolest things about Flash extensions is that you can easily share them with others. This tutorial will show you how to create package that can be emailed or posted to a website. That package can then be downloaded by others and installed using Extension Manager.
(more…)
Flash offers the ability to create your own tools and store them in the Flash Toolbar. Tools are probably the most underutilized type of Flash extension. This tutorial will walk through the basics of creating a tool.
(more…)
If you’ve been following this tutorial series thus far, this might be the tutorial you’ve been waiting for. The ability to load a SWF into the Flash Professional interface is definitely one of the coolest aspects of Flash extensibility. There are 2 distinct advantages to building a Flash panel:
- Endless visual possibilities
- The power of ActionScript
The 1st advantage should be fairly obvious to anyone familiar with Flash’s design and animation capabilities. The 2nd advantage may be slightly less obvious, since ActionScript and JSFL can appear so similar, but ActionScript (3, specifically) has a whole host of capabilities that JSFL does not (network connectivity, timed events, and the ability to interface with nearly any file type using ByteArray, to name a few). The topic of exploiting ActionScript capabilities in a panel actually deserves its own blog post, but for now it’s sufficient to say that SWF panels make cool stuff possible.
This tutorial will serve as a primer, getting you started on the basics of how to load your panel into the Flash interface and how to communicate with JSFL through your SWF.
(more…)
The ability to include user interaction into a JSFL script can provide a significant level of flexibility and feedback. Flexibility and feedback are especially useful when you plan to distribute your extension to others. Flexibility allows the script to run differently depending on current conditions. Is there a document open? Are items selected in the Library? Etc. If so, you can ask the user how to proceed. Feedback lets the user know that the script has run properly (or not), so that he/she can proceed with confidence. This tutorial will cover the primary types of user interaction available in JSFL.
(more…)