Search found 1407 matches
- Wed Mar 04, 2026 11:43 am
- Forum: Hollywood bugs
- Topic: Minor bug with SeekMusic
- Replies: 3
- Views: 20
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, &...
- Wed Mar 04, 2026 11:25 am
- Forum: Hollywood bugs
- Topic: Minor bug with SeekMusic
- Replies: 3
- Views: 20
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...
- Wed Mar 04, 2026 11:10 am
- Forum: Hollywood bugs
- Topic: Minor bug with SeekMusic
- Replies: 3
- Views: 20
Re: Minor bug with SeekMusic
Just took a try with this:
And bug doesnt happen.
Code: Select all
OpenMusic(5, "sfx/musicfile.mp3")
PlayMusic(5)
SeekMusic(5, 225000)
WaitLeftMouse()- Wed Mar 04, 2026 11:03 am
- Forum: Hollywood bugs
- Topic: Minor bug with SeekMusic
- Replies: 3
- Views: 20
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...
- Sun Mar 01, 2026 10:21 am
- Forum: Newbie questions
- Topic: image dimensions
- Replies: 8
- Views: 4057
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.
It is not OnLeftDown, and OnLeftUp, but it is OnMouseDown and OnMouseUp.
Change those and it works.
- 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: 3823
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...
- 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: 3823
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...
- Wed Jan 21, 2026 4:37 pm
- Forum: Hollywood bugs
- Topic: tbl = { "1", "2", "3", } acceptable, Bug or not?
- Replies: 1
- Views: 10046
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 ...
- Fri Jan 16, 2026 6:47 pm
- Forum: General programming
- Topic: SpeedTesting table creation Table[n] = x, CreateList, and Copytable comparison.
- Replies: 4
- Views: 8085
Re: SpeedTesting table creation Table[n] = x, CreateList, and Copytable comparison.
Thanks, Took a try of using InsertItem and now there was a big difference, not that far from 10 times faster being using CreateList. Finally that makes sense. I always been wondering about how come CreateList is supposed to be 10 times faster, when it often times in my tests have even lost to regula...
- Fri Jan 16, 2026 4:27 pm
- Forum: General programming
- Topic: SpeedTesting table creation Table[n] = x, CreateList, and Copytable comparison.
- Replies: 4
- Views: 8085
Re: SpeedTesting table creation Table[n] = x, CreateList, and Copytable comparison.
You are right, I completely missed I was using same n on both loops inside those first two, no wonder they were so much faster. By changing them into locals, as I should have done right from the beginning, it took so long that I changed the numbers to 1000 instead of 10000: CreateList: 416 RegularTa...