Leaderboard

Popular Content

Showing content with the highest reputation on 07/13/2016 in all areas

  1. not only that shes French and they are pushy
    2 points
  2. 1 point
  3. but for Larry and me it should be age before beauty
    1 point
  4. Hey, how did you get yours already and I didn't? That's not fair.
    1 point
  5. Yes, you must wait for the email.
    1 point
  6. You should create a background service in your extension in order to catch properly all of panel events. 1- Define service file in your def.json [ { . . "service": { main: "service.htm", debug: false } . . } ] 2- Catch events in service.htm. <!DOCTYPE HTML> <html lang="en-US"> <head> <meta charset="UTF-8"> <script> var rt = window.external.mxGetRuntime(); rt.onAppEvent = function (obj) { switch (obj.type) { case "ACTION_START": // panel started. break; case "ACTION_STOP": // panel stopped. break; case "ACTION_SHOW": // panel is shown. break; case "ACTION_HIDE": // panel is hidden. break; case "ERROR": console.log(obj.errorMessage); break; case "LOCALE_CHANGED": // locale changed. break; default: // do nothing. } }; </script> </head> <body> </body> </html> You can also debug your service by changing debug parameter.
    1 point
  7. Hope it's a short windows for you too. I'm VIP3 so I'll let you know.
    1 point