适用于iOS和Android的Adobe air NativeAlert

时间:2012-09-14 05:03:01

标签: android actionscript-3 air air-native-extension

只是想知道是否有人成功实施了following native extension

不知怎的,我无法让它发挥作用。

当我对if(NativeAlert.isSupported)进行检查时,它让我回复了。然而 警报对话从未出现过。

import pl.mateuszmackowiak.nativeANE.alert.NativeAlert;
import pl.mateuszmackowiak.nativeANE.NativeDialogEvent;
import pl.mateuszmackowiak.nativeANE.toast.Toast;

NativeAlert.defaultTheme = NativeAlert.ANDROID_DEVICE_DEFAULT_DARK_THEME;// not necessary
if(NativeAlert.isSupported){
    NativeAlert.show( “some message” , “title” , “first button label” , “otherButtons,LabelsSeperated,WithAComma” , someAnswerFunction);
}else{
    _modalDialogue.simplecloseModalDialoge();
}
//NativeAlert.dispose(); //only when exiting app
//Toast
Toast.show(“some message”,Toast.LENGTH_LONG);
var randX:int = Math.random()*600;
var randY:int = Math.random()*600;
Toast.showWithDifferentGravit(“some message”,Toast.LENGTH_SHORT,Toast.GRAVITY_LEFT,randX,randY);

我有一台iPad1和Adobe Air 3.4,闪存CS5

2 个答案:

答案 0 :(得分:0)

您正在使用智能引号。将“和”替换为“。

答案 1 :(得分:0)

我建议您使用不同的ANE,来自不同的开发人员并再次测试。 我使用了freshplanet中的一个(在github中的opensource)并且工作得很完美。

这是一篇文章,你可以找到更多信息...... http://www.redcodelabs.com/2014/03/adobe-air-native-alerts-using-anes/