MsgBox for monkey?

Monkey Forums/Monkey Programming/MsgBox for monkey?

ondesic(Posted 2012) [#1]
Is there a MsgBox for monkey tat will work on most targets? I have tried the ShowAlert from diddy with no luck.

Thanks.


ondesic(Posted 2012) [#2]
Posted a few days ago, any ideas?


AdamRedwoods(Posted 2012) [#3]
native ui? no.


bruZard(Posted 2012) [#4]
Android:
class utils_message{
	public static void message(CharSequence message){
		Toast.makeText(MonkeyGame.activity.getApplicationContext(), message, Toast.LENGTH_SHORT).show();
	}
}


HTML5:
function message(msg){
    alert(msg);
}



ondesic(Posted 2013) [#5]
@bruZard,

Is this native code or can I use it right in monkey?


TeaBoy(Posted 2013) [#6]
it is native code Java and JavaScript.


ondesic(Posted 2013) [#7]
I am surprised no one has made a messagebox in Monkey that can translate to the other languages, like the rest of Monkey does.