Gamestudio Links
Zorro Links
Newest Posts
Zorro 2.70
by jcl. 09/29/25 09:24
optimize global parameters SOLVED
by dBc. 09/27/25 17:07
ZorroGPT
by TipmyPip. 09/27/25 10:05
assetHistory one candle shift
by jcl. 09/21/25 11:36
Plugins update
by Grant. 09/17/25 16:28
AUM Magazine
Latest Screens
Rocker`s Revenge
Stug 3 Stormartillery
Iljuschin 2
Galactic Strike X
Who's Online Now
0 registered members (), 18,561 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
krishna, DrissB, James168, Ed_Love, xtns
19168 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
play loops #45619
05/12/05 20:33
05/12/05 20:33
Joined: Jan 2005
Posts: 5
caracas, venezuela.
Maniac Offline OP
Newbie
Maniac  Offline OP
Newbie

Joined: Jan 2005
Posts: 5
caracas, venezuela.
ok, here is my problem: i have some loops and i want to play'em consecutive... but, although I publish them with a advanced program of audio and I do that the end correspond with the principle, the motor creates a small pause and does that a space among each repetition of the loop be heard.


_maniac _www.maniacdg.tk
Re: play loops [Re: Maniac] #45620
05/13/05 05:09
05/13/05 05:09
Joined: Jan 2004
Posts: 3,023
The Netherlands
Helghast Offline
Expert
Helghast  Offline
Expert

Joined: Jan 2004
Posts: 3,023
The Netherlands
snd_loop, should do a loop without a pauze in between *atleast for me*.
sorry if i posted something really dumb, but i got from your question that you wanted to loop a sound without a pause between the loops.

regards,


Formerly known as dennis_fantasy
Portfolio - http://www.designorhea.com/
Project - http://randomchance.cherrygames.org/
Re: play loops [Re: Helghast] #45621
05/31/05 18:32
05/31/05 18:32
Joined: May 2005
Posts: 961
Bremen, Germany
tuschcarsten Offline
User
tuschcarsten  Offline
User

Joined: May 2005
Posts: 961
Bremen, Germany
And if you want to stop the loop, you have to do this:

Code:
 
var musikhandle;
var musicvol = 88;
sound title = <title.wav>;


function play_title()
{
musikhandle = play_loop (title,musicvol);
RETURN;
}

function stop_title()
{
stop_sound musikhandle; //Stop the in play_title() played sound
}




Bit Happens!

Moderated by  HeelX, Spirit 

Gamestudio download | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1