Search found 401 matches

by Alexey Kolesnikov
Tue Dec 12, 2023 7:30 am
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Resume Menu with the last frame of the movie
Replies: 5
Views: 3214

Re: Resume Menu with the last frame of the movie

You still need to check CanResumeMovie and if yes - set GPR[10] to 1 and call Play MOVIE. I would recommend to do it in the next way: - In the Project Properties -> General -> JAR signing -> Disc settings = Restore on disc load - In the Project Properties -> Advanced -> Action Every Second (at the c...
by Alexey Kolesnikov
Sun Dec 10, 2023 5:40 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Resume Menu with the last frame of the movie
Replies: 5
Views: 3214

Re: Resume Menu with the last frame of the movie

Hello, There is no simple (and perfect) way to do this. In theory, you can try the next way: - Place this menu in the popup - Set some GPR to some value as a flag (for example GPR[10] = 1) - Resume the movie - In the Action Every Second of the movie check that GPR[10]=1 and if yes: -- set GPR[10] = ...
by Alexey Kolesnikov
Sat Dec 09, 2023 6:40 am
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Blu-Disc Studio beta versions
Replies: 165
Views: 260015

Re: Blu-Disc Studio beta versions

4.6.2.2119:
+ Added Delete/Clear action to the context menu of the Properties window.
by Alexey Kolesnikov
Sun Dec 03, 2023 1:00 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Blu-Disc Studio beta versions
Replies: 165
Views: 260015

Re: Blu-Disc Studio beta versions

4.6.2.2118:
+ Added ability to specify state for the "Copy to..." → "Copy as static".
+ Log colorized.
+ Bugfixes.
by Alexey Kolesnikov
Sat Dec 02, 2023 9:53 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Blu-Disc Studio beta versions
Replies: 165
Views: 260015

Re: Blu-Disc Studio beta versions

4.6.1.2116:
+ Added drag'n'drop from file explorer.
+ Added "Project properties" → Streams → "Allow last chapter at last frame".
+ Subtitles 32-bit renderer fixed.
by Alexey Kolesnikov
Wed Nov 29, 2023 4:58 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Sound Up Sound Down
Replies: 7
Views: 2950

Re: Sound Up Sound Down

manager.getPlaybackRate() just returns the current playback rate. It does not say which button was pressed. There is no function that says which button was pressed. But you can assign an action for the "Next track" and "Prev track" in the "Remote controls buttons" section of each menu/popup/movie/pl...
by Alexey Kolesnikov
Mon Nov 27, 2023 5:19 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Loading in javascript code
Replies: 6
Views: 3431

Re: Loading in javascript code

I added delay for the loading stages in the JAR settings in the latest beta.
by Alexey Kolesnikov
Mon Nov 27, 2023 5:17 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Sound Up Sound Down
Replies: 7
Views: 2950

Re: Sound Up Sound Down

I added functions manager.getLevel() and manager.getDB().
So now you can use

Code: Select all

if (manager.getLevel() == 1.0f) {
  manager.moveToXY("F:PM_****.***", ***, ***);
}
by Alexey Kolesnikov
Sun Nov 26, 2023 9:05 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Sound Up Sound Down
Replies: 7
Views: 2950

Re: Sound Up Sound Down

well... to use Java you need to learn Java :)

This is a function that sets the value:
manager.setLevel(1.0f);

But you right - I need to add getLevel() and getDB() to get values. Will add in the next beta.