SlideShare a Scribd company logo
imFlash4.0 Introductions

        2012.2.20
        Rex Chen
Outlines
•   What is imFlash SDK
•   Basic knowledge about imFlash4.0
•   Important classes
•   Examples : Lily and her Australia trip
What is imFlash SDK
• imFlash SDK helps developers to design
  applications on imTop, which is the multi-
  resolution interactive display system from
  ivlab.
• Enhances the rendering performance by utilizing
  GPU
• Allow designers to design animation easier
Basic knowledge about imFlash4.0
• Base on Flex, AIR and Away3D SDK
• Use Flash Builder IDE
• Run on Adobe AIR runtimes
Important classes
iFlashScene


iHorizontalObj

iHorizontalBitmap iTeraPixel

iVerticalObj
iVerticalBitmap iVerticalMovie
iFlashScene
• The basic display scene
• AddObjectVertical method
  – Add objects to vertical display
• AddObjectHorizontal method
  – Add objects to horizontal display
iHorizontalBitmap
• The basic horizontal display bitmap
• iHorizontalBitmap constructor
  – Construct an iHorizontalBitmap
• addEventListener
  – Listen to events you want
iVerticalBitmap
• The basic vertical display bitmap
• iVerticalBitmap constructor
  – Construct an iVerticalBitmap
Examples : Lily and Her Australia trip
Ex1:ApoTag and Horizontal Display
• Add Tai.png Aus.png Airplane.png to vertical display
var Tai:iVerticalBitmap = new
iVerticalBitmap("assets/image/taiwan.png",200,300);
var Aus:iVerticalBitmap = new
iVerticalBitmap("assets/image/Aus.png",400,400);
AirPlane = new
 iVerticalBitmap("assets/image/247228-air-australia.png",200,100);

scene.addObjectVertical(Tai,30,30);
scene.addObjectVertical(Aus,700,200);
scene.addObjectVertical(AirPlane,0,0);
• Listen to Tag event
private function onTag(e:iEvent):void {
    var te:TagEvent = TagEvent(e._data);
    var rad:Number = te.angle;
    switch(te.state){
         case Tags.BIRTH:
           AirPlane.visible = true;
           AirPlane.x = te.xpos * 1280;
           AirPlane.y = te.ypos * 720;
           AirPlane._rotate(rad);
         break;
         case Tags.MOVE:
           AirPlane.x = te.xpos * 1280;
           AirPlane.y = te.ypos * 720;
           AirPlane._rotate(rad-AirPlane.rotation / 360 * (2 * Math.PI));
         break;
         case Tags.DEATH:
           AirPlane.visible = false;
    }
}
Ex2:Seeing Koala
• Add Koala.jpg to horizontal display
var image:iHorizontalBitmap = new
iHorizontalBitmap("../assets/image/koala.jpg",1280,720);

scene.addObjectHorizontal(image,0,0);
image.addEventListener(iEvent.DRAG_EVENT, onDragHandler);
image.addEventListener(iEvent.ZOOM_EVENT, onZoomHandler);
image.addEventListener(iEvent.ROTATE_EVENT,onRotateHandler);
Ex2:Seeing Koala
• Listen to drag, zoom and rotate events
private function onDragHandler(e:iEvent):void{
     iHorizontalBitmap(e.currentTarget)._translate(Location(e._d
       ata));
}
private function onZoomHandler(e:iEvent):void{
   var ze:ZoomEvent = ZoomEvent(e._data);
    iHorizontalBitmap(e.currentTarget)._scale(ze.getScale());
}
private function onRotateHandler(e:iEvent):void{
   iHorizontalBitmap(e.currentTarget)._rotate(Number(e._data));
}

More Related Content

Viewers also liked

Carving the Perfect Design Engineer
Carving the Perfect Design EngineerCarving the Perfect Design Engineer
Carving the Perfect Design Engineer
Ian Phillips
 
Carving the Perfect Engineer (EWME'16, 11may16)
Carving the Perfect Engineer (EWME'16, 11may16)Carving the Perfect Engineer (EWME'16, 11may16)
Carving the Perfect Engineer (EWME'16, 11may16)
Ian Phillips
 
Taken By The Horns @ARM
Taken By The Horns @ARMTaken By The Horns @ARM
Taken By The Horns @ARM
Ian Phillips
 
Being a Design Engineer
Being a Design EngineerBeing a Design Engineer
Being a Design Engineer
Ian Phillips
 
Combing 3 d gesture with touch interface on mobile devices
Combing 3 d gesture with touch interface on mobile devicesCombing 3 d gesture with touch interface on mobile devices
Combing 3 d gesture with touch interface on mobile devices
huanwu
 
Spinal trauma
Spinal traumaSpinal trauma
Spinal trauma
Dr.shaheryar Aziz
 
Technology of mohenjo daro
Technology of mohenjo daroTechnology of mohenjo daro
Technology of mohenjo daro
Lena Goren
 
Landscape Architect CV - Ada Maciejak
Landscape Architect CV - Ada MaciejakLandscape Architect CV - Ada Maciejak
Landscape Architect CV - Ada Maciejak
Ada Maciejak
 

Viewers also liked (8)

Carving the Perfect Design Engineer
Carving the Perfect Design EngineerCarving the Perfect Design Engineer
Carving the Perfect Design Engineer
 
Carving the Perfect Engineer (EWME'16, 11may16)
Carving the Perfect Engineer (EWME'16, 11may16)Carving the Perfect Engineer (EWME'16, 11may16)
Carving the Perfect Engineer (EWME'16, 11may16)
 
Taken By The Horns @ARM
Taken By The Horns @ARMTaken By The Horns @ARM
Taken By The Horns @ARM
 
Being a Design Engineer
Being a Design EngineerBeing a Design Engineer
Being a Design Engineer
 
Combing 3 d gesture with touch interface on mobile devices
Combing 3 d gesture with touch interface on mobile devicesCombing 3 d gesture with touch interface on mobile devices
Combing 3 d gesture with touch interface on mobile devices
 
Spinal trauma
Spinal traumaSpinal trauma
Spinal trauma
 
Technology of mohenjo daro
Technology of mohenjo daroTechnology of mohenjo daro
Technology of mohenjo daro
 
Landscape Architect CV - Ada Maciejak
Landscape Architect CV - Ada MaciejakLandscape Architect CV - Ada Maciejak
Landscape Architect CV - Ada Maciejak
 

Similar to Im flash

Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28
Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28
Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28
Frédéric Harper
 
Developing iOS REST Applications
Developing iOS REST ApplicationsDeveloping iOS REST Applications
Developing iOS REST Applications
lmrei
 
I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)
Katsumi Kishikawa
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
Gilbert Guerrero
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
Gilbert Guerrero
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
Gilbert Guerrero
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
Gilbert Guerrero
 
Artdm170 week6 scripting_motion
Artdm170 week6 scripting_motionArtdm170 week6 scripting_motion
Artdm170 week6 scripting_motion
Gilbert Guerrero
 
Intro to HTML5
Intro to HTML5Intro to HTML5
Intro to HTML5
Jussi Pohjolainen
 
HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22
HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22
HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22
Frédéric Harper
 
Intro to computer vision in .net
Intro to computer vision in .netIntro to computer vision in .net
Intro to computer vision in .net
Stephen Lorello
 
Desenvolvimento iOS - Aula 4
Desenvolvimento iOS - Aula 4Desenvolvimento iOS - Aula 4
Desenvolvimento iOS - Aula 4
Saulo Arruda
 
Get started with YUI
Get started with YUIGet started with YUI
Get started with YUI
Adam Lu
 
Javascript essential-pattern
Javascript essential-patternJavascript essential-pattern
Javascript essential-pattern
偉格 高
 
JavaScript APIs - The Web is the Platform - .toster conference, Moscow
JavaScript APIs - The Web is the Platform - .toster conference, MoscowJavaScript APIs - The Web is the Platform - .toster conference, Moscow
JavaScript APIs - The Web is the Platform - .toster conference, Moscow
Robert Nyman
 
Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09
Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09
Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09
Frédéric Harper
 
Creating Hybrid mobile apps with YUI
Creating Hybrid mobile apps with YUICreating Hybrid mobile apps with YUI
Creating Hybrid mobile apps with YUI
Gonzalo Cordero
 
HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...
HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...
HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...
Frédéric Harper
 
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
Frédéric Harper
 
Developing AIR for Android with Flash Professional
Developing AIR for Android with Flash ProfessionalDeveloping AIR for Android with Flash Professional
Developing AIR for Android with Flash Professional
Chris Griffith
 

Similar to Im flash (20)

Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28
Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28
Firefox OS, fixing the mobile web - FITC Toronto - 2014-04-28
 
Developing iOS REST Applications
Developing iOS REST ApplicationsDeveloping iOS REST Applications
Developing iOS REST Applications
 
I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)I phone勉強会 (2011.11.23)
I phone勉強会 (2011.11.23)
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
 
Artdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting MotionArtdm170 Week6 Scripting Motion
Artdm170 Week6 Scripting Motion
 
Artdm170 week6 scripting_motion
Artdm170 week6 scripting_motionArtdm170 week6 scripting_motion
Artdm170 week6 scripting_motion
 
Intro to HTML5
Intro to HTML5Intro to HTML5
Intro to HTML5
 
HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22
HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22
HTML for the Mobile Web, Firefox OS - All Things Open - 2014-10-22
 
Intro to computer vision in .net
Intro to computer vision in .netIntro to computer vision in .net
Intro to computer vision in .net
 
Desenvolvimento iOS - Aula 4
Desenvolvimento iOS - Aula 4Desenvolvimento iOS - Aula 4
Desenvolvimento iOS - Aula 4
 
Get started with YUI
Get started with YUIGet started with YUI
Get started with YUI
 
Javascript essential-pattern
Javascript essential-patternJavascript essential-pattern
Javascript essential-pattern
 
JavaScript APIs - The Web is the Platform - .toster conference, Moscow
JavaScript APIs - The Web is the Platform - .toster conference, MoscowJavaScript APIs - The Web is the Platform - .toster conference, Moscow
JavaScript APIs - The Web is the Platform - .toster conference, Moscow
 
Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09
Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09
Firefox OS, une plateforme à découvrir - IO Saglac - 2014-09-09
 
Creating Hybrid mobile apps with YUI
Creating Hybrid mobile apps with YUICreating Hybrid mobile apps with YUI
Creating Hybrid mobile apps with YUI
 
HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...
HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...
HTML, not just for desktops: Firefox OS - Congreso Universitario Móvil - 201...
 
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
 
Developing AIR for Android with Flash Professional
Developing AIR for Android with Flash ProfessionalDeveloping AIR for Android with Flash Professional
Developing AIR for Android with Flash Professional
 

Recently uploaded

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
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
Miro Wengner
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
DanBrown980551
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Precisely
 
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectorsConnector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
DianaGray10
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
Brandon Minnick, MBA
 
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
 
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
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
Neo4j
 
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Pitangent Analytics & Technology Solutions Pvt. Ltd
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
Alex Pruden
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
Edge AI and Vision Alliance
 
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
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
akankshawande
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
Antonios Katsarakis
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
Safe Software
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
operationspcvita
 

Recently uploaded (20)

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
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 
JavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green MasterplanJavaLand 2024: Application Development Green Masterplan
JavaLand 2024: Application Development Green Masterplan
 
5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides5th LF Energy Power Grid Model Meet-up Slides
5th LF Energy Power Grid Model Meet-up Slides
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their MainframeDigital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
Digital Banking in the Cloud: How Citizens Bank Unlocked Their Mainframe
 
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectorsConnector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
Connector Corner: Seamlessly power UiPath Apps, GenAI with prebuilt connectors
 
Choosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptxChoosing The Best AWS Service For Your Website + API.pptx
Choosing The Best AWS Service For Your Website + API.pptx
 
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
 
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
 
Leveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and StandardsLeveraging the Graph for Clinical Trials and Standards
Leveraging the Graph for Clinical Trials and Standards
 
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
Crafting Excellence: A Comprehensive Guide to iOS Mobile App Development Serv...
 
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
zkStudyClub - LatticeFold: A Lattice-based Folding Scheme and its Application...
 
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
“Temporal Event Neural Networks: A More Efficient Alternative to the Transfor...
 
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...
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development ProvidersYour One-Stop Shop for Python Success: Top 10 US Python Development Providers
Your One-Stop Shop for Python Success: Top 10 US Python Development Providers
 
Dandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity serverDandelion Hashtable: beyond billion requests per second on a commodity server
Dandelion Hashtable: beyond billion requests per second on a commodity server
 
Essentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation ParametersEssentials of Automations: Exploring Attributes & Automation Parameters
Essentials of Automations: Exploring Attributes & Automation Parameters
 
The Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptxThe Microsoft 365 Migration Tutorial For Beginner.pptx
The Microsoft 365 Migration Tutorial For Beginner.pptx
 

Im flash

  • 1. imFlash4.0 Introductions 2012.2.20 Rex Chen
  • 2. Outlines • What is imFlash SDK • Basic knowledge about imFlash4.0 • Important classes • Examples : Lily and her Australia trip
  • 3. What is imFlash SDK • imFlash SDK helps developers to design applications on imTop, which is the multi- resolution interactive display system from ivlab. • Enhances the rendering performance by utilizing GPU • Allow designers to design animation easier
  • 4. Basic knowledge about imFlash4.0 • Base on Flex, AIR and Away3D SDK • Use Flash Builder IDE • Run on Adobe AIR runtimes
  • 6. iFlashScene • The basic display scene • AddObjectVertical method – Add objects to vertical display • AddObjectHorizontal method – Add objects to horizontal display
  • 7. iHorizontalBitmap • The basic horizontal display bitmap • iHorizontalBitmap constructor – Construct an iHorizontalBitmap • addEventListener – Listen to events you want
  • 8. iVerticalBitmap • The basic vertical display bitmap • iVerticalBitmap constructor – Construct an iVerticalBitmap
  • 9. Examples : Lily and Her Australia trip
  • 10. Ex1:ApoTag and Horizontal Display • Add Tai.png Aus.png Airplane.png to vertical display var Tai:iVerticalBitmap = new iVerticalBitmap("assets/image/taiwan.png",200,300); var Aus:iVerticalBitmap = new iVerticalBitmap("assets/image/Aus.png",400,400); AirPlane = new iVerticalBitmap("assets/image/247228-air-australia.png",200,100); scene.addObjectVertical(Tai,30,30); scene.addObjectVertical(Aus,700,200); scene.addObjectVertical(AirPlane,0,0);
  • 11. • Listen to Tag event private function onTag(e:iEvent):void { var te:TagEvent = TagEvent(e._data); var rad:Number = te.angle; switch(te.state){ case Tags.BIRTH: AirPlane.visible = true; AirPlane.x = te.xpos * 1280; AirPlane.y = te.ypos * 720; AirPlane._rotate(rad); break; case Tags.MOVE: AirPlane.x = te.xpos * 1280; AirPlane.y = te.ypos * 720; AirPlane._rotate(rad-AirPlane.rotation / 360 * (2 * Math.PI)); break; case Tags.DEATH: AirPlane.visible = false; } }
  • 12. Ex2:Seeing Koala • Add Koala.jpg to horizontal display var image:iHorizontalBitmap = new iHorizontalBitmap("../assets/image/koala.jpg",1280,720); scene.addObjectHorizontal(image,0,0); image.addEventListener(iEvent.DRAG_EVENT, onDragHandler); image.addEventListener(iEvent.ZOOM_EVENT, onZoomHandler); image.addEventListener(iEvent.ROTATE_EVENT,onRotateHandler);
  • 13. Ex2:Seeing Koala • Listen to drag, zoom and rotate events private function onDragHandler(e:iEvent):void{ iHorizontalBitmap(e.currentTarget)._translate(Location(e._d ata)); } private function onZoomHandler(e:iEvent):void{ var ze:ZoomEvent = ZoomEvent(e._data); iHorizontalBitmap(e.currentTarget)._scale(ze.getScale()); } private function onRotateHandler(e:iEvent):void{ iHorizontalBitmap(e.currentTarget)._rotate(Number(e._data)); }