Search found 211 matches
- Mon Jul 15, 2013 12:07 am
- Forum: Newbie questions
- Topic: WriteChr() - problem with writing chrs to a file
- Replies: 2
- Views: 2872
Re: WriteChr() - problem with writing chrs to a file
Thanks Andreas, seems I had misunderstood the Seek thing. Putting out that makes the script working as intended.
- Fri Jul 12, 2013 1:13 am
- Forum: Newbie questions
- Topic: WriteChr() - problem with writing chrs to a file
- Replies: 2
- Views: 2872
WriteChr() - problem with writing chrs to a file
I have a little prob with writing chrs to a file. Probably I don't see the forrest for the trees, but I am really stuck here. I think the following snipped down mini program should write ABCD... to a file, but it doesn't it writes CEG... instead while the counter "my_frame" gets increased by 1 only ...
- Tue Jan 01, 2013 4:18 pm
- Forum: Announcements
- Topic: MUI Royale 1.0 released
- Replies: 40
- Views: 77048
Re: MUI Royale 1.0 released
A big big thank you! Finally it will be easily possible to make Hollywood programs that look and feel professional and native. I am really stunned and agape. Hats off!
- Thu Nov 15, 2012 4:41 pm
- Forum: Announcements
- Topic: Hollywood 5.2 released - 10th Anniversary Edition
- Replies: 29
- Views: 53935
Re: Hollywood 5.2 released - 10th Anniversary Edition
That's cool. I hope you'll bring Hollywood back on sale soon, so more ppl can use this great piece of software.
- Tue May 08, 2012 11:38 am
- Forum: General programming
- Topic: gapless sample replay - how to do?
- Replies: 7
- Views: 5665
Re: gapless sample replay - how to do?
Last night I remembered my trick. I actually kind of cheated: The sound I need is a continous and rather random background plus some temporal precise events. Since backgrund and these events aren't temporally tightly coupled I just splitted them. I did a gapless replay of the background (with the bu...
- Fri Apr 27, 2012 3:58 pm
- Forum: General programming
- Topic: gapless sample replay - how to do?
- Replies: 7
- Views: 5665
Re: gapless sample replay - how to do?
The delay is caused by the internal buffering. I don't think there's currently a way around this so I'm wondering how you did achieve the realtime changes? Maybe it is possible to feed only very few samples to FillMusicBuffer(), i.e. less than requested. But I'm not sure if this will work at all. I...
- Thu Apr 26, 2012 11:10 am
- Forum: General programming
- Topic: gapless sample replay - how to do?
- Replies: 7
- Views: 5665
Re: gapless sample replay - how to do?
Well, I have issues with a delay during gapless replay I cannot explain. The changes in data providing the stream are affecting the acual stream with quite a delay (1-2s). Just look to the little example code provided below. Dunno why that is the case. If you press the button (the red box), it takes...
- Sat Feb 25, 2012 1:06 am
- Forum: General programming
- Topic: gapless sample replay - how to do?
- Replies: 7
- Views: 5665
Re: gapless sample replay - how to do?
Thanks Andreas!
Daumen hoch & super Sache!
Will place an order within the very next days.
And the network thing is also cool. And the doublebuffering. And the vector things. And the #?
The list is really long and pretty impressive!
Daumen hoch & super Sache!
Will place an order within the very next days.
And the network thing is also cool. And the doublebuffering. And the vector things. And the #?
The list is really long and pretty impressive!
- Wed Jan 19, 2011 12:59 pm
- Forum: General programming
- Topic: How to get the Transparency to actually work?
- Replies: 8
- Views: 7310
Re: How to get the Transparency to actually work?
This works for me: @DISPLAY { Title = "bla",width=1024, height=768 } CreateGradientBGPic (1, #LINEAR, #BLUE, #RED) DisplayBGPic(1) SetFont("times", 24) SetFontColor (#GREEN) LoadBrush(1, "graphics/santaground1.png") SelectBrush(1) mycolor=ReadPixel(1,1) EndSelect() Print("mycolor=",mycolor) SetFillS...
- Tue Jan 18, 2011 7:01 pm
- Forum: General programming
- Topic: Create bitmap from array
- Replies: 1
- Views: 2355
Create bitmap from array
How do I create a bitmap from an arry and plot that as a brush or sprite? Given I want to do some kind of oscilloscope I now draw lined from one sample point of my array to the next. For k=0 To 498 last_temp_o=temp_o m=k*5 temp_o=noise[m+2]+noise[m+4] temp_o=temp_o/4 Line (k+12, 180+temp_o,k+12,180+...