Search found 1409 matches

by Bugala
Wed Mar 04, 2026 10:14 pm
Forum: Hollywood bugs
Topic: Minor bug with SeekMusic
Replies: 7
Views: 156

Re: Minor bug with SeekMusic

No, not using avcodec plugin for this test.
by Bugala
Wed Mar 04, 2026 7:40 pm
Forum: Hollywood bugs
Topic: Minor bug with SeekMusic
Replies: 7
Views: 156

Re: Minor bug with SeekMusic

And more info. I tried with a different file, and it works fine. So has to do with the specific MP3, going to email you the file.
by Bugala
Wed Mar 04, 2026 11:43 am
Forum: Hollywood bugs
Topic: Minor bug with SeekMusic
Replies: 7
Views: 156

Re: Minor bug with SeekMusic

Actually, This isnt such a minor after all. Here is what I tried: First I did: OpenMusic(5, "musicfile.mp3") PlayMusic(5) SeekMusic(5, 124800) I kept changing the Seekmusic location number to find easily recognisable spot, which in this case was 124800. Then I did following: OpenMusic(5, &...
by Bugala
Wed Mar 04, 2026 11:25 am
Forum: Hollywood bugs
Topic: Minor bug with SeekMusic
Replies: 7
Views: 156

Re: Minor bug with SeekMusic

Actually, I just took that SeekMusic line off from my program, and noticed that timings I have done are all off. It appears it is actually the other way around. It is systematically jumping to wrong location, and only randomly jumps to, I assume, right location, since my animations are happening too...
by Bugala
Wed Mar 04, 2026 11:10 am
Forum: Hollywood bugs
Topic: Minor bug with SeekMusic
Replies: 7
Views: 156

Re: Minor bug with SeekMusic

Just took a try with this:

Code: Select all

OpenMusic(5, "sfx/musicfile.mp3")
PlayMusic(5)
SeekMusic(5, 225000)
WaitLeftMouse()
And bug doesnt happen.
by Bugala
Wed Mar 04, 2026 11:03 am
Forum: Hollywood bugs
Topic: Minor bug with SeekMusic
Replies: 7
Views: 156

Minor bug with SeekMusic

I am currently making an entro, and trying to time things right. To avoid needing to watch the whole thing from beginning, I am using SeekMusic to jump to a certain location in the Music, and then timing is based upon using: GetAttribute(#MUSIC, 5, #ATTRPOSITION) I have only one SeekMusic in the who...
by Bugala
Sun Mar 01, 2026 10:21 am
Forum: Newbie questions
Topic: image dimensions
Replies: 8
Views: 5902

Re: image dimensions

You are using wrong command.

It is not OnLeftDown, and OnLeftUp, but it is OnMouseDown and OnMouseUp.

Change those and it works.
by Bugala
Tue Feb 17, 2026 11:50 am
Forum: Newbie questions
Topic: Is there a way to see which Music ID is playing?
Replies: 2
Views: 5187

Re: Is there a way to see which Music ID is playing?

Thanks from this. I actually am already keeping track myself what music is playing, but there is always a chance some bug affects this track keeping, since its main purpose is that I can simply use PlayMusic(name) without worrying if it is already playing or not. As in, it will check if that music i...
by Bugala
Tue Feb 17, 2026 8:09 am
Forum: Newbie questions
Topic: Is there a way to see which Music ID is playing?
Replies: 2
Views: 5187

Is there a way to see which Music ID is playing?

I was looking at Hollywood's Music Commands, as well as GetAttribute options, but didn't catch any way to get info about which Music ID is playing currently. You can query if a certain music ID is playing, but you can't find out directly which music ID is playing right now. Is this so, or did I just...
by Bugala
Wed Jan 21, 2026 4:37 pm
Forum: Hollywood bugs
Topic: tbl = { "1", "2", "3", } acceptable, Bug or not?
Replies: 1
Views: 11764

tbl = { "1", "2", "3", } acceptable, Bug or not?

Here is an example: tbl = { "1", "2", "3", } Point here being that after "3" there is still one comma "," and this works fine, but should it? Personally I think it is excellent it does work this way, since quite often I notice I tend to accidentally ...