User Tools

Site Tools


Sidebar

Privacy Policy

News

Version 2.50 is out since Jan 1st 2022


Frequently Asked Questions


Namespaces

Note for contributors

If you wish to create a new page in the DroidScript wiki, please click on the most appropriate namespace above and follow the notes for contributors there.

Because of spam, it has been necessary to add a CAPTCHA to the registration form and the save option for editing pages. You will not need to prove you are human if you are logged in, so please register.

Please feel free to improve any existing page, as well as adding new pages to increase the sum of public knowledge about DroidScript.

Formatting Syntax

built_in:get_last_image

Table of Contents

GetLastImage

(Information and examples taken from the DroidScript documentation)

Description

The GetLastImage method returns the last image control that was touched by the user. This can be useful when you want to use a single callback function for multiple images.

 app.GetLastImage();

Example

function OnStart()
{
  lay = app.CreateLayout( "Linear", "VCenter,FillXY" );
 
  img1 = app.CreateImage( "/Sys/Img/Hello.png" );
  img1.SetOnTouch( HandleImage );
  lay.AddChild( img1 );
 
  img2 = app.CreateImage( "/Sys/Img/Droid1.png" );
  img2.SetOnTouch( HandleImage );
  lay.AddChild( img2 );
 
  app.AddLayout( lay );
}
 
function HandleImage()
{
  var img = app.GetLastImage();
  img.Rotate( 180 );
}
built_in/get_last_image.txt · Last modified: 2015/03/05 00:28 (external edit)