Skip to main content
Participating Frequently
June 26, 2012
Question

Heyzap ANE

  • June 26, 2012
  • 24 replies
  • 4457 views

Hello,

I've developed an Adobe Native Extension that allows you to include Heyzap in your application (on iOS/Android), it's here:

https://github.com/jrouwe/HeyzapANE

Let me know if it is of any use to you.

This topic has been closed for replies.

24 replies

Known Participant
August 29, 2012

do you have a tutorial or can you quickly explain how to use this extension with flash pro?

jrouweAuthor
Participating Frequently
August 29, 2012

Sorry, I don't use or own Flash Pro, I use Flash Develop. You should be able to include the ANE file like any other ANE file though, so any tutorial on the internet should do.

Known Participant
October 29, 2012

Hi, I use your ANE in my game ( android ), and I put this code inside the game...

I am using flash CS6

var Hey:Heyzap = new Heyzap();

Text_txt.text = Hey.isSupported(); ( in my device it return "true" )

if(Hey.isSupported()){

       Text_txt.text = "Loading ckeckin";

       Hey.load(true);

       Hey.checkin("Check in!");

}

when the textfield say "Loading ckeckin", nothing happen... my app is stopped... any suggest about this?

Thanks!