Question
NOOK store linking
Does anyone know how I'd go about linking to apps in the NOOK store from within a flash/air app?
For iOS it can be done with basically a hyperlink. Here is what I've found on the NOOK support page:
Intent i = new Intent();
i.setAction("com.bn.sdk.shop.details");
i.putExtra("product_details_ean","2940043352927"); //your real EAN goes here
startActivity(i);
