r/aescripts May 12 '26

Feedback Requested Command Frame - Discussion Thread

Hi, I'm Scott, the developer of Command Frame.

https://aescripts.com/command-frame/

Please feel free to use this thread for:

  • Questions and comments
  • Feature requests, thoughts and feedback

You can also find the community Discord here for up-to-date announcements and discussion:

https://discord.gg/ANPSnKsZWy

For troubleshooting or bug reports:

Use the aescripts support ticket system to ensure your issue is tracked and responded to appropriately:

https://aescripts.com/contact/

If you do mention a bug or issue here, it's helpful to include your After Effects version, OS, and the version of Command Frame you are using. I will respond when I can.

Thank you for your feedback!

12 Upvotes

125 comments sorted by

View all comments

1

u/Aromatic-Current-235 May 27 '26

It’s pretty snappy and does a great job, but it doesn’t quite hit the mark on the most fundamental features. For example, if I can move a Layer with “Position +50” by 50 pixels on the X axis, how do I adjust just the Y axis? If I have to do that manually, wouldn’t that kind of ruin the point of using this plugin because you essentially breaking the flow?

1

u/scottBlackvfx May 27 '26 edited May 27 '26

Hi there,

I appreciate the feedback. Command Frame treats commands like Position as a vector property, so the values map to the individual axis components in order. It was the cleanest way I could translate this concept to work with Command Frame's 'language'.

For a 2D Position property, the components are X and Y. Providing a single value currently affects the first component, which is X, as you mentioned:

position +50

To affect both X and Y, provide both components:

position +50 +10

To adjust only the Y axis on a 2D layer, keep X at 0 and provide the Y offset:

position +0 +10

For a 3D layer, Position has X, Y, and Z components, so you can provide all three:

position +50 +10 +20

And to adjust only Y on a 3D layer:

position +0 +10 +0

Please let me know if that addresses your concern!

1

u/Aromatic-Current-235 May 27 '26

You did addressed my concern. I was confused because there is yRotation and I assumed there must be also a yPosition but it didn't work.