You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be great if the user could launch ambie with autoplay (with an optional mix name and minimize argument) using a URI.
This way for example ambie:autoplay?name=Example&minimize would auto-play the "Example" mix and minimize the app immedately, ambie:autoplay would play the whatever was played last,
and ambie:autoplay?minimize would play whatever was played last and minimize the app.
This would be useful for power users for automation purposes. (ex. Power Automate)
The text was updated successfully, but these errors were encountered:
I think there's already a way to play Ambie using a protocol, but it was experimental. It's in the code somewhere.
But for minimizing, I'm not sure that it's possible to for a uwp app to programmatically minimize itself. Can you check the docs to see if you find anything for this?
publicvoidProcessLaunchProtocolArguments(stringarguments){varquery= QueryString.Parse(arguments);
query.TryGetValue(AutoPlayKey,outvar isAutoPlay);if(!string.IsNullOrEmpty(isAutoPlay)&& Convert.ToBoolean(isAutoPlay)){// Auto play music.
_player.Play();}}
nevermind... but still, mine is more functional LMAOO
It would be great if the user could launch ambie with autoplay (with an optional mix name and minimize argument) using a URI.
This way for example
ambie:autoplay?name=Example&minimize
would auto-play the "Example" mix and minimize the app immedately,ambie:autoplay
would play the whatever was played last,and
ambie:autoplay?minimize
would play whatever was played last and minimize the app.This would be useful for power users for automation purposes. (ex. Power Automate)
The text was updated successfully, but these errors were encountered: