Got a LiveCode personal license? Are you a beginner, hobbyist or educator that's new to LiveCode? This forum is the place to go for help getting started. Welcome!
At least "beep" works as before with these sounds.
Perhaps you would like, as I would like to do, really play system *fonts*:
Play and kick this hard-to-read "Helvetica" used as system menu font in Yosemite. My eyes are burning. A font that is designed for large headlines to use for tiny displays, and not changeable in prefs !! And "TinkerTool" can't help here ...
Mag wrote:Maybe I forgot to tell that this stack works fine in Mavericks. Have I to rewrite the code to have it to work in Yosemite, really?
Well, Apple does have a rather long history of disregard for backward compatibility, but it may be that the engine team could come up with a workaround to accommodate it. IMO it would be worth submitting a report with this sample stack to the bug DB for consideration.
Richard Gaskin LiveCode development, training, and consulting services: Fourth World Systems
LiveCode Group on Facebook
LiveCode Group on LinkedIn
Is the player object to be present in every card which is the current top card?
no capisce!?
The player is neccessary on every card you want to "play" your sound(s)!
But also player objects can be grouped, if that helps
Best
Klaus
Wow, since I do not know at what point should play this sound, this would force me to put a player in every single card of each stack and substack of my project (Preferences, About Box, Warning boxes and so on). And there are more than thirty stacks...
Several years ago I created an invisible stack for this purpose which only held one player object
that I could "fill" and start where- and whenever I needed to
the system sounds play all correct with me in Yosemite.
Also connected to 'sound':
The voices for speech have changed (were improved?) and have to be (automatically) updated.
Klaus wrote:Several years ago I created an invisible stack for this purpose which only held one player object
that I could "fill" and start where- and whenever I needed to
Hi Klaus, this could be a solution, but, in this way, have I to change the stack that is having the focus (e.g. the topStack)?
have I to change the stack that is having the focus (e.g. the topStack)?
depends on how you will be implementing the solution.
But a simple:
...
put "path/to/xyz.aiff" into tSound
send "PlayNewSound tSound" to stack "my invisible audio player"
...
should not change the focus, and even if it would, why not change the focus back to another stack?