10-13-2025, 06:53 PM 
(This post was last modified: 10-13-2025, 07:45 PM by Solitaire.
 Edit Reason: Solution.
)
	
	
	
		Hi all! A very happy Monday to you :D
I was wondering if different sounds could be specified in the menu scene, and item scene scripts for the cursor, cancel and decision.
I don't want to use those specified in the system, and "window selection". I want them to be different than the other generic choice selection boxes in the game, and stuff.
I tried copying the SE playing bits from Window Selection, and using them in "Scene_Menu", but they didn't change anything. I even tried copying the whole "Window Selection" script and altering it!! ...But that lead to errors, and probably wasn't a good idea. So I stopped fooling with that
I also tried using this FancyChoices [link] (should be named "FancyKhoices") script from Kyonides, which *seems* like it may use different sounds for the choice options, but when I edited that bit, it didn't change the sounds.
Anywho! I hope someone can help :D I can explain more if anything isn't clear. Thank you, to any possible replies <3
EDIT:
Ah! Okay, for some reason it seems that the choices script effects left/right movements, but not up/down ones.
EDIT2:
I tried to add the call to play the audio for all movements, but now *both* the system audio and my system audio play. Okay, this isn't right I don't think lol
EDIT3:
AH! I THINK I FIGURED IT OUT!
In "window_selectable" under line 140, I just added an "if" statement for the cursor!
And I'll just repeat that for each direction...
I hope this won't cause any problems later But it looks good to me!! Maybe this can help someone else too ;D
 But it looks good to me!! Maybe this can help someone else too ;D
	
	
	
	
	
I was wondering if different sounds could be specified in the menu scene, and item scene scripts for the cursor, cancel and decision.
I don't want to use those specified in the system, and "window selection". I want them to be different than the other generic choice selection boxes in the game, and stuff.
I tried copying the SE playing bits from Window Selection, and using them in "Scene_Menu", but they didn't change anything. I even tried copying the whole "Window Selection" script and altering it!! ...But that lead to errors, and probably wasn't a good idea. So I stopped fooling with that

I also tried using this FancyChoices [link] (should be named "FancyKhoices") script from Kyonides, which *seems* like it may use different sounds for the choice options, but when I edited that bit, it didn't change the sounds.
Anywho! I hope someone can help :D I can explain more if anything isn't clear. Thank you, to any possible replies <3

EDIT:
Ah! Okay, for some reason it seems that the choices script effects left/right movements, but not up/down ones.
EDIT2:
I tried to add the call to play the audio for all movements, but now *both* the system audio and my system audio play. Okay, this isn't right I don't think lol
EDIT3:
AH! I THINK I FIGURED IT OUT!
In "window_selectable" under line 140, I just added an "if" statement for the cursor!
Code:
          # Move cursor down
          if $scene.is_a?(Scene_Menu)                    #<-------
            Audio.se_play("Audio/SE/ba", 100, 50)        #<-------
            @index = (@index + @column_max) % @item_max  #<------- 
          else 
          $game_system.se_play($data_system.cursor_se)
          @index = (@index + @column_max) % @item_max
        end
      end
    endAnd I'll just repeat that for each direction...
I hope this won't cause any problems later
 But it looks good to me!! Maybe this can help someone else too ;D
 But it looks good to me!! Maybe this can help someone else too ;D
	
 
 
 Separate Sounds for Menu Scene
 Separate Sounds for Menu Scene
 

 

 

![[Image: Screen%20Shot%202023-04-09%20at%207.24.27%20PM.jpeg]](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgp_qcXyRg1lqj8IEGhhN1zuRio5AFNIfzdElYcazTxIFqIpfHArS9-l8A5-OVGHfV1rgUfJKK9JSmmqouQ7Nt0S3b6wUwmVrKbL1L6zgHxMbaU8HsbAkH3GrKokjXxP-fHd6Z1nCovhYbznr563ZSKx4OkpFz4qchf6PaH8QvmXHd7iNn4TLn4TY5rAg/s2125/Screen%20Shot%202023-04-09%20at%207.24.27%20PM.jpeg)
![[Image: QrnbKlx.jpg]](https://i.imgur.com/QrnbKlx.jpg)
![[Image: sGz1ErF.png]](https://i.imgur.com/sGz1ErF.png)
![[Image: liM4ikn.png]](https://i.imgur.com/liM4ikn.png)
![[Image: fdzKgZA.png]](https://i.imgur.com/fdzKgZA.png)
![[Image: sj0H81z.png]](https://i.imgur.com/sj0H81z.png)
![[Image: QL7oRau.png]](https://i.imgur.com/QL7oRau.png)
![[Image: uSqjY09.png]](https://i.imgur.com/uSqjY09.png)
![[Image: GAA3qE9.png]](https://i.imgur.com/GAA3qE9.png)
![[Image: 2Hmnx1G.png]](https://i.imgur.com/2Hmnx1G.png)
![[Image: BwtNdKw.png%5B]](https://i.imgur.com/BwtNdKw.png%5B)
 
	 
  
 
