SlideShare a Scribd company logo
A litl sdk for flash and flex
                           © 2010, litl LLC. CONFIDENTIAL
kathryn rotondo
channel developer
flashionista.org
@krotondo


           © 2010, litl LLC. CONFIDENTIAL
10 steps
to get you started
               © 2010, litl LLC. CONFIDENTIAL
1.
Get a developer account
http://developer.litl.com

                      © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
2.
    Download the SDK
http://devcenter.litl.com/
 developer/download_sdk/
                     © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
Developer bundle contains:
•  AS3 SDK
  •  source

  •  swc

  •  asdoc

•  Simulator
•  Control Set
•  Sample Channels


                             © 2010, litl LLC. CONFIDENTIAL
Developer bundle contains:
•  AS3 SDK
  •  source

  •  swc

  •  asdoc

•  Simulator
•  Control Set
•  Sample Channels


                             © 2010, litl LLC. CONFIDENTIAL
3.
Install the Simulator

                    © 2010, litl LLC. CONFIDENTIAL
AIR 2 RC 1 runtime
http://labs.adobe.com/
   downloads/air2.html


                   © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
4.
Create a Project

                   © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
5.
Import the SDK

                 © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
6.
Instantiate LitlService

                     © 2010, litl LLC. CONFIDENTIAL
var
service:LitlService
=

  new
LitlService(this);




                    © 2010, litl LLC. CONFIDENTIAL
7.
Connect LitlService

                      © 2010, litl LLC. CONFIDENTIAL
service.connect("litl_countdown",

  "Countdown
Channel",
"0.1",
true);


•    channelId
String
•    channelTitle String
•    channelVersion String
•    hasOptions Boolean



                             © 2010, litl LLC. CONFIDENTIAL
8.
Listen for events

                    © 2010, litl LLC. CONFIDENTIAL
service.addEventListener(

 
InitializeMessage.INITIALIZED,

  onInit);


private
function

  onInit(e:InitializeMessage):void
{

 
//
your
code
here

}


                             © 2010, litl LLC. CONFIDENTIAL
Initialize


             © 2010, litl LLC. CONFIDENTIAL
InitializeMessage.INITIALIZE

•  channel calls connect() method
•  litlOS transmits initial state (network
   connectivity, view, properties)
•  litlOS transmits initialized event



                                             © 2010, litl LLC. CONFIDENTIAL
View Changes


           © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
ViewChangeMessage.VIEW_CHANGE


•  e.view: CARD, FOCUS or CHANNEL
•  e.details: NORMAL, OFFSCREEN,
   SELECTOR, or SCREENSAVER
•  e.width:
•  e.height: ex. CHANNEL_HEIGHT (800px) or
   CHANNEL_HEIGHT_HDMI (720px)

                                  © 2010, litl LLC. CONFIDENTIAL
CARD
 Move Next
Move Previous
            © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
UserInputMessage.MOVE_NEXT_ITEM

UserInputMessage.MOVE_PREVIOUS_ITEM


•  Sent by clickable navigation arrows
•  Next is also sent on a timer
•  To enable, set service.channelItemCount > 1



                                      © 2010, litl LLC. CONFIDENTIAL
FOCUS
Options

          © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
OptionsStatusMessage.OPTIONS_STATUS


•  Boolean optionsOpen
property




                                  © 2010, litl LLC. CONFIDENTIAL
CHANNEL
Go Button

            © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
UserInputMessage.GO_BUTTON_HELD

UserInputMessage.GO_BUTTON_PRESSED

UserInputMessage.GO_BUTTON_RELEASED





                            © 2010, litl LLC. CONFIDENTIAL
CHANNEL
 Wheel

          © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
UserInputMessage.WHEEL_NEXT_ITEM

UserInputMessage.WHEEL_PREVIOUS_ITEM





                            © 2010, litl LLC. CONFIDENTIAL
ALL VIEWS
Network Status

            © 2010, litl LLC. CONFIDENTIAL
NetworkStatusMessage.NETWORK_STATUS


•  Boolean
connected
property




                                © 2010, litl LLC. CONFIDENTIAL
ALL VIEWS
Property Changes

             © 2010, litl LLC. CONFIDENTIAL
PropertyMessage.PROPERTY_CHANGED

•  propertyScope
property: GLOBAL,
   ACCOUNT, SHARED, DEVICE
•  Parameters array of NameValuePair objects




                                    © 2010, litl LLC. CONFIDENTIAL
9.
Make requests

                © 2010, litl LLC. CONFIDENTIAL
Set Title
service.channelItemCount
=
3;





                          © 2010, litl LLC. CONFIDENTIAL
Set Favicon
service.channelIcon
=
“foo.jpg”;





                            © 2010, litl LLC. CONFIDENTIAL
Enable Move Events
  service.channelItemCount
=
3;





                            © 2010, litl LLC. CONFIDENTIAL
Close Options
service.closeOptions();




                          © 2010, litl LLC. CONFIDENTIAL
Enable/Disable
     Wheel
 service.enableWheel();

 service.disableWheel();




                        © 2010, litl LLC. CONFIDENTIAL
Enable/Disable
    Screensaver
service.screensaverEnabled
=
true;





                             © 2010, litl LLC. CONFIDENTIAL
Open URL in
  web browser
service.openURL(url:String);





                          © 2010, litl LLC. CONFIDENTIAL
Set Properties
service.sharedProperties.prop
=
val;


service.accountProperties.prop
=
val;

service.deviceProperties.prop
=
val;





                              © 2010, litl LLC. CONFIDENTIAL
10.
Test in Simulator

                    © 2010, litl LLC. CONFIDENTIAL
With simulator running:

•    Test Movie (Flash)
•    Run/Debug (Flash Builder)
•    Drag swf into browser
•    Double-click on swf




                                 © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
instance list


                © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
instance info


                © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
controls


           © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
log


      © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
RequestCompleted
  RequestError

             © 2010, litl LLC. CONFIDENTIAL
global properties


               © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
catalog info


               © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
11.
controls
           © 2010, litl LLC. CONFIDENTIAL
Buttons
 & List

          © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
Video Player
 & Filmstrip

               © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
Modal menu


             © 2010, litl LLC. CONFIDENTIAL
© 2010, litl LLC. CONFIDENTIAL
Appendix A:
Documentation

           © 2010, litl LLC. CONFIDENTIAL
Building Channels in
        Flash Professional
http://developer.litl.com/documentation/
    10stepchannelinflashprofessional.htm



                                © 2010, litl LLC. CONFIDENTIAL
Building Channels in
           Flash Builder
http://developer.litl.com/documentation/
      10stepchannelinflashbuilder.htm



                                © 2010, litl LLC. CONFIDENTIAL
Simulator Testing
 http://developer.litl.com/
documentation/simulator.htm


                     © 2010, litl LLC. CONFIDENTIAL
USB Stick Testing
  http://developer.litl.com/
documentation/usb-testing.htm



                         © 2010, litl LLC. CONFIDENTIAL
Meet our controls
  developer.litl.com/
    documentation/
  meetourcontrols.htm

                   © 2010, litl LLC. CONFIDENTIAL
Appendix B:
 Resources

              © 2010, litl LLC. CONFIDENTIAL
Developer Forum
devcenter.litl.com/
      forum
               © 2010, litl LLC. CONFIDENTIAL
Developer Blog
devblog.litl.com

              © 2010, litl LLC. CONFIDENTIAL
Email
devsupport@litl.com

               © 2010, litl LLC. CONFIDENTIAL
Questions?


             © 2010, litl LLC. CONFIDENTIAL

More Related Content

Similar to a litl SDK for flash and flex

RTView for TIBCO EMS Monitor Webinar
RTView for TIBCO EMS Monitor WebinarRTView for TIBCO EMS Monitor Webinar
RTView for TIBCO EMS Monitor Webinar
SL Corporation
 
Presentation collaboration in the cloud
Presentation   collaboration in the cloudPresentation   collaboration in the cloud
Presentation collaboration in the cloud
xKinAnx
 
Pivotal microservices spring_pcf_skillsmatter.pptx
Pivotal microservices spring_pcf_skillsmatter.pptxPivotal microservices spring_pcf_skillsmatter.pptx
Pivotal microservices spring_pcf_skillsmatter.pptx
Sufyaan Kazi
 
The Cloud: Enabling Real-time Video Services
The Cloud: Enabling Real-time Video ServicesThe Cloud: Enabling Real-time Video Services
The Cloud: Enabling Real-time Video Services
IMTC
 
[2015-11월 정기 세미나] Cloud Native Platform - Pivotal
[2015-11월 정기 세미나] Cloud Native Platform - Pivotal[2015-11월 정기 세미나] Cloud Native Platform - Pivotal
[2015-11월 정기 세미나] Cloud Native Platform - Pivotal
OpenStack Korea Community
 
MCET WebEx vs Lync competitive analysis,
MCET WebEx vs Lync competitive analysis,MCET WebEx vs Lync competitive analysis,
MCET WebEx vs Lync competitive analysis,
dark19921
 
The Cloud Native Journey
The Cloud Native JourneyThe Cloud Native Journey
The Cloud Native Journey
Matt Stine
 
OKI Technical Presentation
OKI Technical PresentationOKI Technical Presentation
Teleport 5.0 release webinar
Teleport 5.0 release webinarTeleport 5.0 release webinar
Teleport 5.0 release webinar
Teleport
 
HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data
Kingsley Uyi Idehen
 
Athens 11.2009.ppt
Athens 11.2009.pptAthens 11.2009.ppt
Athens 11.2009.ppt
Videoguy
 
Cloud Foundry Marketplace
Cloud  Foundry MarketplaceCloud  Foundry Marketplace
Cloud Foundry Marketplace
Layne Peng
 
Cloud native pitch-younjin-20150925-v2
Cloud native pitch-younjin-20150925-v2Cloud native pitch-younjin-20150925-v2
Cloud native pitch-younjin-20150925-v2
Younjin Jeong
 
What's New with Perfecto? - May 2017
What's New with Perfecto? - May 2017What's New with Perfecto? - May 2017
What's New with Perfecto? - May 2017
Lizzy Guido (she/her)
 
Bosch Connect: Under the Hood
Bosch Connect: Under the HoodBosch Connect: Under the Hood
Bosch Connect: Under the Hood
LetsConnect
 
What is OTT Technology?
What is OTT Technology?What is OTT Technology?
What is OTT Technology?
Suganya Mathivanan
 
What's New? - March 2017
What's New? - March 2017What's New? - March 2017
What's New? - March 2017
Lizzy Guido (she/her)
 
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-InSteeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
VMware Tanzu
 
Video Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRMVideo Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRM
Stefan Lederer
 
Video Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRMVideo Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRM
Bitmovin Inc
 

Similar to a litl SDK for flash and flex (20)

RTView for TIBCO EMS Monitor Webinar
RTView for TIBCO EMS Monitor WebinarRTView for TIBCO EMS Monitor Webinar
RTView for TIBCO EMS Monitor Webinar
 
Presentation collaboration in the cloud
Presentation   collaboration in the cloudPresentation   collaboration in the cloud
Presentation collaboration in the cloud
 
Pivotal microservices spring_pcf_skillsmatter.pptx
Pivotal microservices spring_pcf_skillsmatter.pptxPivotal microservices spring_pcf_skillsmatter.pptx
Pivotal microservices spring_pcf_skillsmatter.pptx
 
The Cloud: Enabling Real-time Video Services
The Cloud: Enabling Real-time Video ServicesThe Cloud: Enabling Real-time Video Services
The Cloud: Enabling Real-time Video Services
 
[2015-11월 정기 세미나] Cloud Native Platform - Pivotal
[2015-11월 정기 세미나] Cloud Native Platform - Pivotal[2015-11월 정기 세미나] Cloud Native Platform - Pivotal
[2015-11월 정기 세미나] Cloud Native Platform - Pivotal
 
MCET WebEx vs Lync competitive analysis,
MCET WebEx vs Lync competitive analysis,MCET WebEx vs Lync competitive analysis,
MCET WebEx vs Lync competitive analysis,
 
The Cloud Native Journey
The Cloud Native JourneyThe Cloud Native Journey
The Cloud Native Journey
 
OKI Technical Presentation
OKI Technical PresentationOKI Technical Presentation
OKI Technical Presentation
 
Teleport 5.0 release webinar
Teleport 5.0 release webinarTeleport 5.0 release webinar
Teleport 5.0 release webinar
 
HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data HTML5 based PivotViewer for Visualizing LInked Data
HTML5 based PivotViewer for Visualizing LInked Data
 
Athens 11.2009.ppt
Athens 11.2009.pptAthens 11.2009.ppt
Athens 11.2009.ppt
 
Cloud Foundry Marketplace
Cloud  Foundry MarketplaceCloud  Foundry Marketplace
Cloud Foundry Marketplace
 
Cloud native pitch-younjin-20150925-v2
Cloud native pitch-younjin-20150925-v2Cloud native pitch-younjin-20150925-v2
Cloud native pitch-younjin-20150925-v2
 
What's New with Perfecto? - May 2017
What's New with Perfecto? - May 2017What's New with Perfecto? - May 2017
What's New with Perfecto? - May 2017
 
Bosch Connect: Under the Hood
Bosch Connect: Under the HoodBosch Connect: Under the Hood
Bosch Connect: Under the Hood
 
What is OTT Technology?
What is OTT Technology?What is OTT Technology?
What is OTT Technology?
 
What's New? - March 2017
What's New? - March 2017What's New? - March 2017
What's New? - March 2017
 
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-InSteeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
Steeltoe: Develop .NET Microservices Without Cloud Platform Lock-In
 
Video Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRMVideo Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRM
 
Video Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRMVideo Encoding and HTML5 Playback With Native DRM
Video Encoding and HTML5 Playback With Native DRM
 

Recently uploaded

Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Jeffrey Haguewood
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
LucaBarbaro3
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
Hiroshi SHIBATA
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
Zilliz
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
GDSC PJATK
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStrDeep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
saastr
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Malak Abu Hammad
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
saastr
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
Recommendation System using RAG Architecture
Recommendation System using RAG ArchitectureRecommendation System using RAG Architecture
Recommendation System using RAG Architecture
fredae14
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
panagenda
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
Postman
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdfNunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
flufftailshop
 
Azure API Management to expose backend services securely
Azure API Management to expose backend services securelyAzure API Management to expose backend services securely
Azure API Management to expose backend services securely
Dinusha Kumarasiri
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
shyamraj55
 

Recently uploaded (20)

Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
Letter and Document Automation for Bonterra Impact Management (fka Social Sol...
 
Trusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process MiningTrusted Execution Environment for Decentralized Process Mining
Trusted Execution Environment for Decentralized Process Mining
 
TrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy SurveyTrustArc Webinar - 2024 Global Privacy Survey
TrustArc Webinar - 2024 Global Privacy Survey
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Introduction of Cybersecurity with OSS at Code Europe 2024
Introduction of Cybersecurity with OSS  at Code Europe 2024Introduction of Cybersecurity with OSS  at Code Europe 2024
Introduction of Cybersecurity with OSS at Code Europe 2024
 
Generating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and MilvusGenerating privacy-protected synthetic data using Secludy and Milvus
Generating privacy-protected synthetic data using Secludy and Milvus
 
Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!Finale of the Year: Apply for Next One!
Finale of the Year: Apply for Next One!
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStrDeep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
Deep Dive: Getting Funded with Jason Jason Lemkin Founder & CEO @ SaaStr
 
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdfUnlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
Unlock the Future of Search with MongoDB Atlas_ Vector Search Unleashed.pdf
 
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
Overcoming the PLG Trap: Lessons from Canva's Head of Sales & Head of EMEA Da...
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
Recommendation System using RAG Architecture
Recommendation System using RAG ArchitectureRecommendation System using RAG Architecture
Recommendation System using RAG Architecture
 
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAUHCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
HCL Notes und Domino Lizenzkostenreduzierung in der Welt von DLAU
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdfNunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
 
Azure API Management to expose backend services securely
Azure API Management to expose backend services securelyAzure API Management to expose backend services securely
Azure API Management to expose backend services securely
 
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with SlackLet's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
Let's Integrate MuleSoft RPA, COMPOSER, APM with AWS IDP along with Slack
 

a litl SDK for flash and flex

Editor's Notes

  1. First channel developer at litlPrototyped the first channelWork with the operating system team on the communication protocol between channels and the OSLead developer on simulator AIR appWrote an early version of SDK for flash lite, which teammate Ash brought into the present for AS3
  2. @TODO Approval process
  3. Includes:AS3 apiControl set of common componentsSimulatorDocumentationExamples
  4. simulator/litlsimulator.air
  5. Install the simulatorAIR file, so it runs on PC, Mac and LinuxAllows developers to test locally.Just get is started and leave it running in the background while we develop
  6. Click checkbox to agree to license agreementScroll down to runtime, then download installer for pc, mac or linuxWhen installer finishes downloading, double-click and installNOTE: uninstall previous versions, including prerelease versions. Betas are not compatible with prereleases
  7. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  8. OtherIDEs ok of course: FDT and Flash Builder, Eclipse,Or open source flex sdk, with command line compiler
  9. Include the swc in your library build path. Drag into the libs folder in Flash Builder, or Flash Preferences/Actionscript/Actionscript 3.0 Settings
  10. Merged into code rather than runtime shared libraries.
  11. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  12. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  13. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  14. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  15. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  16. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  17. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  18. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  19. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  20. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  21. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  22. Global, shared, account, and device dictionariesString valuesGlobal is read-only
  23. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  24. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  25. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  26. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  27. The simulator will indicate whether your requests are well-formed by replying with either RequestCompleted or RequestErrorRequestError can occur if capabilities weren’t requested, or unexpected values were receivedThe requestId property references the request
  28. You can work in whatever tool you want – Flash Pro, Flash Builder, FDT, command line compile, etc.
  29. Buttons and listList you can swap out item rendererEasy to hook up navigation to litl events
  30. List and video player
  31. Video player and filmstrip
  32. Modal menu
  33. A place to ask questions about The AS3 sdkThe operating systemThe hardware (webbook or new device)And have questions answered by our sdk support specialist ryan or another team member
  34. Aggregates blog posts fromlitl team membersAnswers frequently asked questions from the forumsKeep you up-to-date about additions to the sdk, including new features and sample applications.We will highlight community channels and developers here also