• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Deselecting Frames with "Step Forward/Backward One Frame"

Community Beginner ,
Jul 25, 2018 Jul 25, 2018

Copy link to clipboard

Copied

Hi is there any way in the Adobe Flashes to have frame stepping deselect the highlighted frame? I use Flash 8 and using , and . hotkeys deselects the frame making it more convenient to insert new frames.

Example:
Imgur

Thank you for any input you can give me

- Jomm

Views

1.1K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Jul 26, 2018 Jul 26, 2018

Hi.

These are custom JSFL scripts that you can assign to shortcuts and use them to navigate in the main timeline while deselecting frames at the same time.

Navigate and deselect frames JSFL scripts download:

animate_cc_jsfl_change_frames_and_deselect.zip - Google Drive

Code (for reference only):

Deselect Previous Keyframe JSFL script:

var doc = fl.getDocumentDOM();

if (doc)

{

     var timeline = doc.getTimeline();

     var frame = timeline.layers[timeline.currentLayer].frames[Math.max(timeline.currentFram

...

Votes

Translate

Translate
Jul 25, 2018 Jul 25, 2018

Copy link to clipboard

Copied

Hi Jomm,

Unfortunately I didn't find any way to fulfill your request even in the newest version of Animate CC.

However I see it as a great  suggestion and suspect why it didn't in our minds at the first place.

I would appreciate if you fill up this form - Adobe Animate CC Feature Request/Bug Report Form.​

It will help us in tasking and prioritizing the feature request. 

Thanks!

Ankush

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jul 25, 2018 Jul 25, 2018

Copy link to clipboard

Copied

I sent in the form, hopefully it is reviewed and considered, thank you Ankush!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jul 26, 2018 Jul 26, 2018

Copy link to clipboard

Copied

Hi.

These are custom JSFL scripts that you can assign to shortcuts and use them to navigate in the main timeline while deselecting frames at the same time.

Navigate and deselect frames JSFL scripts download:

animate_cc_jsfl_change_frames_and_deselect.zip - Google Drive

Code (for reference only):

Deselect Previous Keyframe JSFL script:

var doc = fl.getDocumentDOM();

if (doc)

{

     var timeline = doc.getTimeline();

     var frame = timeline.layers[timeline.currentLayer].frames[Math.max(timeline.currentFrame - 1, 0)];

     if (frame)

     {

          timeline.currentFrame -= timeline.currentFrame - frame.startFrame;

          timeline.setSelectedFrames([]);

     }

}

Deselect Previous Frame JSFL script:

var doc = fl.getDocumentDOM();

if (doc)

{

     var timeline = doc.getTimeline();

     timeline.currentFrame--;

     timeline.setSelectedFrames([]);

}

Deselect Next Keyframe JSFL script:

var doc = fl.getDocumentDOM();

if (doc)

{

     var timeline = doc.getTimeline();

     var frame = timeline.layers[timeline.currentLayer].frames[timeline.currentFrame];

     if (frame)

     {

          timeline.currentFrame += frame.duration - (timeline.currentFrame - frame.startFrame);

          timeline.setSelectedFrames([]);

     }

}

Deselect Next Frame JSFL script:

var doc = fl.getDocumentDOM();

if (doc)

{

     var timeline = doc.getTimeline();

     timeline.currentFrame++;

     timeline.setSelectedFrames([]);

}

I hope this helps.

Regards,

JC

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jul 26, 2018 Jul 26, 2018

Copy link to clipboard

Copied

LATEST

Hey this is really helpful,

I do notice a couple issues with it, I cannot hold down the command and have it scroll through the timeline, and again using the command during playback will not stop it where it like normal frame stepping does. However it is still a great alternative for now! Thanks again.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines