Adventure Game Studio

AGS Support => Beginners' Technical Questions => Topic started by: viktor on Fri 04/06/2004 15:48:53

Title: skip
Post by: viktor on Fri 04/06/2004 15:48:53
I have a startup screen and when I want to skip trught the strartup screen I have to click right click first and then the left click to skip. But I want to make it so that I have to only click the left button. Can anyone help me?
Title: Re: skip
Post by: Barbarian on Fri 04/06/2004 16:10:01
Hiya Viktor. Well, you could make one big HotSpot over your startup screen, then set the Interaction and any-click to load in your next room/screen. Would that work?Ã,  I'm sure other AGSers out there probably know more suggestions if my idea doesn't do what you had in mind.



Title: Re: skip
Post by: viktor on Fri 04/06/2004 16:14:54
that's just it. I did that and that's what came out. Sorry maybee I did something wrong but I doubt it that I made the same mistake on all the creens becouse I tested all the cutseen screens.
Title: Re: skip
Post by: strazer on Fri 04/06/2004 16:28:50
Walk mode doesn't trigger the "Any Click" event.
It probably works like that because pressing the right mouse button changes the cursor mode to Use or whatever. Then pressing the left mouse button in Use mode triggers the event.

Try setting the cursor mode to Use on room load and disable changing cursor modes in this room.

Edit: Hm, but the walk mode should be disabled anyway if the player character is hidden. Strange.
Title: Re: skip
Post by: Ashen on Fri 04/06/2004 16:33:49
I was just about to say that .

Also, you could look into StartCutscene() and EndCutscene(). There's options to let any mouseclick skip stuff (StartCutscene(3); i think). Just be sure to have an EndCutscene for every StartCutscene.
Title: Re: skip
Post by: viktor on Sat 05/06/2004 11:17:44
I fixed it. I just set the change cursor mode to use when character enters screen.