SlideShare ist ein Scribd-Unternehmen logo
1 von 26
Spaghetti Sort presents Janus:   the ultimate professional tool for Flash/Flash Lite/Flex developers!   ,[object Object],[object Object],[object Object],A Boston Adobe Mobile and Devices User Group event: http://www.flashmobilegroup.org/ 9 November 2007
Content’s Overview: Who’s Janus? Janus is the name of an ancient Roman god who had two faces looking into different directions. These faces are symbols for the two sides of a Janus compiled application. The swf side, written in ActionScript and the .exe side, written in a .NET or C++ language.   Janus Symbian: - Features - Sis creation - Extending Flash Lite Janus Pocket PC: - Features - Cab creation - Extending Flash / Flash Lite What’s Janus? Janus is a tool for Flash developers that let’s you create and deploy applications for Windows, Pocket PC, Symbian out of your SWF files. It also expands actionscript functionalities with the Janus framework.
Janus Symbian version 2.0.2 Janus Symbian Lite (free) key features: ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],Janus Symbian Full (149 €): ,[object Object],[object Object]
Janus Symbian Diagrams Symbian OS Janus Symbian Launcher C++ engine http 1.0 / 1.1 protocol Flash Lite Player SWF application Desktop SIDE Symbian SIDE Windows XP, Vista Symbian SDKs, Java RE, Active Perl, .NET Janus IDE Compiled and signed SIS file
Interface: Symbian TAB
Symbian Resources TAB
Capabilities TAB
SIS file TAB
Extending Flash Lite capabilities with Janus Janus Symbian Edition lets you expand the power of Flash Lite for Smartphone beyond your imagination, providing a “growing up” set of additional custom functions:  Additional methods ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],* Xml output
Code sample:  how to take a screenshot var sendVar:LoadVars = new LoadVars(); var receiveVar:LoadVars = new LoadVars(); sendVar.area = "0,0,100,100"; // 100x100 px shot sendVar.path = "OthersmyScreen.jpg"; sendVar.qualityfactor = "100";   receiveVar.onLoad = function(){         if(this.err == "none") {                 trace("ok");                 msgText.text = "DONE";         } else {                 trace("error");                 msgText.text = this.msg; //diplay error         } } sendVar.sendAndLoad("http://127.0.0.1:1080/screenShot",receiveVar,"POST");
Janus Pocket PC version Janus Pocket PC key features (199 €): ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Janus Pocket PC Diagrams Windows Mobile OS Janus Pocket PC Launcher C# engine XMLSocket Flash Lite / Flash 7 SWF application / Compact .Net2 Form Desktop SIDE Pocket PC SIDE Windows XP, Vista .NET Janus IDE Compiled EXE - CAB file - ActiveSync installer
Interface: Application TAB
Main Form TAB
Libraries TAB
Resources TAB
Compile TAB
Cab File TAB
PPC Installer TAB
Extending Flash capabilities with Janus Janus Pocket PC lets you expand the power of Flash Lite for Smartphone beyond your imagination, providing a “growing up” set of additional custom functions:  Some Classes ,[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object],[object Object]
Code Sample -  Show a Message Box How to show a message box and retrieve the button clicked:   import ssp.dialogs.*;   //Add the event listener for the 'show' event var listener:Object = new Object(); listener.show = function(e:String) {        result_txt.text = e; } //MessageBox   button1.onRelease = function() {         MessageBox.addListener(listener);        MessageBox.message = "Hello World";        MessageBox.caption = "Information";        MessageBox.buttons = "YesNoCancel";        MessageBox.icon = "None";        MessageBox.show(); }
Code Sample -  How to intercept an SMS message  1/3 This code sample shows the usage of the  MessageInterceptor  class. This class allows to get notifications if a new SMS has been received. You can set the action which can be either 'notify' or 'notifydelete'. Notify will pass the notification down to the next application waiting for SMS messages while notifydelete will delete the message afterwards and block the notification chain.   import ssp.utils.*; import ssp.error.*; import ssp.phone.*;  var listener:Object = new Object();   listener.EVENT_messageReceived = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Error: " + e.message;        }        else        {                var mySMS:SMS = new SMS(e);                result_txt.text = "SMS: " + mySMS.body + "";                result_txt.text += "From: " + mySMS.from + ""        } }
Code Sample -  How to intercept an SMS message  2/3 listener.initialize = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Initialization Error: " + e.message;        }        else        {                result_txt.text = "Is Initialized: " + e.toString() + "";        } }   listener.setAction = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Set action Error: " + e.message;        }        else        {                result_txt.text = "Action set: " + e.toString() + "";        } }  
Code Sample -  How to intercept an SMS message  3/3 listener.setCriteria = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Set criteria Error: " + e.message;        }        else        {                result_txt.text = "Criteria set: " + e.toString() + "";        } }     MessageInterceptor.addListener(listener);   button1.onRelease = function() {           MessageInterceptor.setAction("notifydelete");         MessageInterceptor.setCriteria("body", "contains", "janus", false);        MessageInterceptor.initialize();  }
Resources: Adobe Mobile & Devices Developer Center www.adobe.com/go/ mobiledeveloper   Symbian & Nokia http://www.symbian.com/ http://developer.symbian.com/ https://www.symbiansigned.com/ http://community.forum.nokia.com/ Spaghetti Sort http://www.spaghettisort.com/ http://www.spaghettisort.com/help   (help) http://www.spaghettisort.com/forum   (forum) Questions [email_address] [email_address] http ://www.scriptamanentgroup.net/byte/
Thanks!

Weitere ähnliche Inhalte

Ähnlich wie Janus Mobile e-Seminar

FMS Administration Seminar
FMS Administration SeminarFMS Administration Seminar
FMS Administration SeminarYoss Cohen
 
Complex Event Processing with Esper and WSO2 ESB
Complex Event Processing with Esper and WSO2 ESBComplex Event Processing with Esper and WSO2 ESB
Complex Event Processing with Esper and WSO2 ESBPrabath Siriwardena
 
A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …
A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …
A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …goodfriday
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Mikkel Flindt Heisterberg
 
Developing a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation ApplicationDeveloping a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation Applicationgoodfriday
 
Creating Flash Content for Multiple Screens
Creating Flash Content for Multiple ScreensCreating Flash Content for Multiple Screens
Creating Flash Content for Multiple Screenspaultrani
 
Firefox OS, the Open Web & WebAPIs - HTML5DevConf, San Francisco
Firefox OS, the Open Web & WebAPIs - HTML5DevConf, San FranciscoFirefox OS, the Open Web & WebAPIs - HTML5DevConf, San Francisco
Firefox OS, the Open Web & WebAPIs - HTML5DevConf, San FranciscoRobert Nyman
 
Firefox OS, the Open Web & WebAPIs - Geek Meet Västerås
Firefox OS, the Open Web & WebAPIs - Geek Meet VästeråsFirefox OS, the Open Web & WebAPIs - Geek Meet Västerås
Firefox OS, the Open Web & WebAPIs - Geek Meet VästeråsRobert Nyman
 
Web versus Native: round 1!
Web versus Native: round 1!Web versus Native: round 1!
Web versus Native: round 1!Chris Mills
 
How and Why to extend Firefox
How and Why to extend FirefoxHow and Why to extend Firefox
How and Why to extend FirefoxGraham King
 
Creating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsCreating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsRicardo Varela
 
Flash for Mobile Devices
Flash for Mobile DevicesFlash for Mobile Devices
Flash for Mobile Devicespaultrani
 
PowerShell Technical Overview
PowerShell Technical OverviewPowerShell Technical Overview
PowerShell Technical Overviewallandcp
 
Android Introduction on Java Forum Stuttgart 11
Android Introduction on Java Forum Stuttgart 11 Android Introduction on Java Forum Stuttgart 11
Android Introduction on Java Forum Stuttgart 11 Lars Vogel
 
Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)Mikkel Flindt Heisterberg
 

Ähnlich wie Janus Mobile e-Seminar (20)

MoMo Oct Event
MoMo Oct EventMoMo Oct Event
MoMo Oct Event
 
FMS Administration Seminar
FMS Administration SeminarFMS Administration Seminar
FMS Administration Seminar
 
Complex Event Processing with Esper and WSO2 ESB
Complex Event Processing with Esper and WSO2 ESBComplex Event Processing with Esper and WSO2 ESB
Complex Event Processing with Esper and WSO2 ESB
 
A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …
A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …
A First Look at Windows Presentation Foundation Everywhere (WPF/E): a Cross …
 
Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)Plug yourself in and your app will never be the same (1 hr edition)
Plug yourself in and your app will never be the same (1 hr edition)
 
Developing a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation ApplicationDeveloping a Windows Presentation Foundation Application
Developing a Windows Presentation Foundation Application
 
Creating Flash Content for Multiple Screens
Creating Flash Content for Multiple ScreensCreating Flash Content for Multiple Screens
Creating Flash Content for Multiple Screens
 
Firefox OS, the Open Web & WebAPIs - HTML5DevConf, San Francisco
Firefox OS, the Open Web & WebAPIs - HTML5DevConf, San FranciscoFirefox OS, the Open Web & WebAPIs - HTML5DevConf, San Francisco
Firefox OS, the Open Web & WebAPIs - HTML5DevConf, San Francisco
 
OneTeam Media Server
OneTeam Media ServerOneTeam Media Server
OneTeam Media Server
 
Firefox OS, the Open Web & WebAPIs - Geek Meet Västerås
Firefox OS, the Open Web & WebAPIs - Geek Meet VästeråsFirefox OS, the Open Web & WebAPIs - Geek Meet Västerås
Firefox OS, the Open Web & WebAPIs - Geek Meet Västerås
 
Presentation wpf
Presentation wpfPresentation wpf
Presentation wpf
 
Web versus Native: round 1!
Web versus Native: round 1!Web versus Native: round 1!
Web versus Native: round 1!
 
Mashup Y! widget
Mashup Y! widgetMashup Y! widget
Mashup Y! widget
 
How and Why to extend Firefox
How and Why to extend FirefoxHow and Why to extend Firefox
How and Why to extend Firefox
 
Intro to Android Programming
Intro to Android ProgrammingIntro to Android Programming
Intro to Android Programming
 
Creating Yahoo Mobile Widgets
Creating Yahoo Mobile WidgetsCreating Yahoo Mobile Widgets
Creating Yahoo Mobile Widgets
 
Flash for Mobile Devices
Flash for Mobile DevicesFlash for Mobile Devices
Flash for Mobile Devices
 
PowerShell Technical Overview
PowerShell Technical OverviewPowerShell Technical Overview
PowerShell Technical Overview
 
Android Introduction on Java Forum Stuttgart 11
Android Introduction on Java Forum Stuttgart 11 Android Introduction on Java Forum Stuttgart 11
Android Introduction on Java Forum Stuttgart 11
 
Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)Plug yourself in and your app will never be the same (2 hr editon)
Plug yourself in and your app will never be the same (2 hr editon)
 

Kürzlich hochgeladen

Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptxnandhinijagan9867
 
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur DubaiUAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubaijaehdlyzca
 
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGBerhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGpr788182
 
Pre Engineered Building Manufacturers Hyderabad.pptx
Pre Engineered  Building Manufacturers Hyderabad.pptxPre Engineered  Building Manufacturers Hyderabad.pptx
Pre Engineered Building Manufacturers Hyderabad.pptxRoofing Contractor
 
Falcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon investment
 
JAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR ESCORTS
JAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR  ESCORTSJAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR  ESCORTS
JAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR ESCORTSkajalroy875762
 
Falcon Invoice Discounting: Unlock Your Business Potential
Falcon Invoice Discounting: Unlock Your Business PotentialFalcon Invoice Discounting: Unlock Your Business Potential
Falcon Invoice Discounting: Unlock Your Business PotentialFalcon investment
 
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecJual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecZurliaSoop
 
Getting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAI
Getting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAIGetting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAI
Getting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAITim Wilson
 
Kalyan Call Girl 98350*37198 Call Girls in Escort service book now
Kalyan Call Girl 98350*37198 Call Girls in Escort service book nowKalyan Call Girl 98350*37198 Call Girls in Escort service book now
Kalyan Call Girl 98350*37198 Call Girls in Escort service book nowranineha57744
 
Cannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 UpdatedCannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 UpdatedCannaBusinessPlans
 
Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...
Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...
Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...meghakumariji156
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentationuneakwhite
 
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 MonthsSEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 MonthsIndeedSEO
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfAdmir Softic
 
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al MizharAl Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizharallensay1
 
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service AvailableNashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Availablepr788182
 
Durg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTS
Durg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTSDurg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTS
Durg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTSkajalroy875762
 

Kürzlich hochgeladen (20)

Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptx
 
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur DubaiUAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
UAE Bur Dubai Call Girls ☏ 0564401582 Call Girl in Bur Dubai
 
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGBerhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
 
Pre Engineered Building Manufacturers Hyderabad.pptx
Pre Engineered  Building Manufacturers Hyderabad.pptxPre Engineered  Building Manufacturers Hyderabad.pptx
Pre Engineered Building Manufacturers Hyderabad.pptx
 
Buy gmail accounts.pdf buy Old Gmail Accounts
Buy gmail accounts.pdf buy Old Gmail AccountsBuy gmail accounts.pdf buy Old Gmail Accounts
Buy gmail accounts.pdf buy Old Gmail Accounts
 
WheelTug Short Pitch Deck 2024 | Byond Insights
WheelTug Short Pitch Deck 2024 | Byond InsightsWheelTug Short Pitch Deck 2024 | Byond Insights
WheelTug Short Pitch Deck 2024 | Byond Insights
 
Falcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business GrowthFalcon Invoice Discounting: Empowering Your Business Growth
Falcon Invoice Discounting: Empowering Your Business Growth
 
JAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR ESCORTS
JAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR  ESCORTSJAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR  ESCORTS
JAJPUR CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN JAJPUR ESCORTS
 
Falcon Invoice Discounting: Unlock Your Business Potential
Falcon Invoice Discounting: Unlock Your Business PotentialFalcon Invoice Discounting: Unlock Your Business Potential
Falcon Invoice Discounting: Unlock Your Business Potential
 
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecJual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
 
Getting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAI
Getting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAIGetting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAI
Getting Real with AI - Columbus DAW - May 2024 - Nick Woo from AlignAI
 
Kalyan Call Girl 98350*37198 Call Girls in Escort service book now
Kalyan Call Girl 98350*37198 Call Girls in Escort service book nowKalyan Call Girl 98350*37198 Call Girls in Escort service book now
Kalyan Call Girl 98350*37198 Call Girls in Escort service book now
 
Cannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 UpdatedCannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 Updated
 
Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...
Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...
Escorts in Nungambakkam Phone 8250092165 Enjoy 24/7 Escort Service Enjoy Your...
 
Uneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration PresentationUneak White's Personal Brand Exploration Presentation
Uneak White's Personal Brand Exploration Presentation
 
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 MonthsSEO Case Study: How I Increased SEO Traffic & Ranking by 50-60%  in 6 Months
SEO Case Study: How I Increased SEO Traffic & Ranking by 50-60% in 6 Months
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al MizharAl Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
Al Mizhar Dubai Escorts +971561403006 Escorts Service In Al Mizhar
 
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service AvailableNashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
Nashik Call Girl Just Call 7091819311 Top Class Call Girl Service Available
 
Durg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTS
Durg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTSDurg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTS
Durg CALL GIRL ❤ 82729*64427❤ CALL GIRLS IN durg ESCORTS
 

Janus Mobile e-Seminar

  • 1.
  • 2. Content’s Overview: Who’s Janus? Janus is the name of an ancient Roman god who had two faces looking into different directions. These faces are symbols for the two sides of a Janus compiled application. The swf side, written in ActionScript and the .exe side, written in a .NET or C++ language. Janus Symbian: - Features - Sis creation - Extending Flash Lite Janus Pocket PC: - Features - Cab creation - Extending Flash / Flash Lite What’s Janus? Janus is a tool for Flash developers that let’s you create and deploy applications for Windows, Pocket PC, Symbian out of your SWF files. It also expands actionscript functionalities with the Janus framework.
  • 3.
  • 4. Janus Symbian Diagrams Symbian OS Janus Symbian Launcher C++ engine http 1.0 / 1.1 protocol Flash Lite Player SWF application Desktop SIDE Symbian SIDE Windows XP, Vista Symbian SDKs, Java RE, Active Perl, .NET Janus IDE Compiled and signed SIS file
  • 9.
  • 10. Code sample: how to take a screenshot var sendVar:LoadVars = new LoadVars(); var receiveVar:LoadVars = new LoadVars(); sendVar.area = "0,0,100,100"; // 100x100 px shot sendVar.path = "OthersmyScreen.jpg"; sendVar.qualityfactor = "100";   receiveVar.onLoad = function(){         if(this.err == "none") {                 trace("ok");                 msgText.text = "DONE";         } else {                 trace("error");                 msgText.text = this.msg; //diplay error         } } sendVar.sendAndLoad("http://127.0.0.1:1080/screenShot",receiveVar,"POST");
  • 11.
  • 12. Janus Pocket PC Diagrams Windows Mobile OS Janus Pocket PC Launcher C# engine XMLSocket Flash Lite / Flash 7 SWF application / Compact .Net2 Form Desktop SIDE Pocket PC SIDE Windows XP, Vista .NET Janus IDE Compiled EXE - CAB file - ActiveSync installer
  • 20.
  • 21. Code Sample - Show a Message Box How to show a message box and retrieve the button clicked:   import ssp.dialogs.*;   //Add the event listener for the 'show' event var listener:Object = new Object(); listener.show = function(e:String) {        result_txt.text = e; } //MessageBox   button1.onRelease = function() {         MessageBox.addListener(listener);        MessageBox.message = "Hello World";        MessageBox.caption = "Information";        MessageBox.buttons = "YesNoCancel";        MessageBox.icon = "None";        MessageBox.show(); }
  • 22. Code Sample - How to intercept an SMS message 1/3 This code sample shows the usage of the MessageInterceptor class. This class allows to get notifications if a new SMS has been received. You can set the action which can be either 'notify' or 'notifydelete'. Notify will pass the notification down to the next application waiting for SMS messages while notifydelete will delete the message afterwards and block the notification chain.   import ssp.utils.*; import ssp.error.*; import ssp.phone.*;  var listener:Object = new Object();   listener.EVENT_messageReceived = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Error: " + e.message;        }        else        {                var mySMS:SMS = new SMS(e);                result_txt.text = "SMS: " + mySMS.body + "";                result_txt.text += "From: " + mySMS.from + ""        } }
  • 23. Code Sample - How to intercept an SMS message 2/3 listener.initialize = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Initialization Error: " + e.message;        }        else        {                result_txt.text = "Is Initialized: " + e.toString() + "";        } }   listener.setAction = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Set action Error: " + e.message;        }        else        {                result_txt.text = "Action set: " + e.toString() + "";        } }  
  • 24. Code Sample - How to intercept an SMS message 3/3 listener.setCriteria = function(e) {        if(e instanceof SSPError)        {                result_txt.text ="Set criteria Error: " + e.message;        }        else        {                result_txt.text = "Criteria set: " + e.toString() + "";        } }     MessageInterceptor.addListener(listener);   button1.onRelease = function() {           MessageInterceptor.setAction("notifydelete");         MessageInterceptor.setCriteria("body", "contains", "janus", false);        MessageInterceptor.initialize();  }
  • 25. Resources: Adobe Mobile & Devices Developer Center www.adobe.com/go/ mobiledeveloper Symbian & Nokia http://www.symbian.com/ http://developer.symbian.com/ https://www.symbiansigned.com/ http://community.forum.nokia.com/ Spaghetti Sort http://www.spaghettisort.com/ http://www.spaghettisort.com/help (help) http://www.spaghettisort.com/forum (forum) Questions [email_address] [email_address] http ://www.scriptamanentgroup.net/byte/