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:togglebuttons

This is an old revision of the document!


ToggleButtons

(Information and examples taken from the DroidScript documentation)

Description

Create toggle buttons using the CreateToggle method of the app object:

btn = app.CreateToggle( text, width, height, options );

You can allow the toggle button to auto-size by leaving out the dimensions or you can specify a width and height as decimal fractions of the screen's width and height.

Use the SetOnTouch method of your button object to set the name of a function you want to be called when the button is touched.

You can get the state of the toggle button at any time using the GetChecked method of the button. The button state is also passed into your OnTouch callback function as a parameter every time the button is touched.

Example

function OnStart()
{
  lay = app.CreateLayout( "Linear", "VCenter,FillXY" );
 
  btn = app.CreateToggle( "Toggle Me" );
  btn.SetOnTouch( ShowState );
  lay.AddChild( btn );
 
  app.AddLayout( lay );
}
 
function ShowState( isChecked )
{
  app.ShowPopup( "Checked = " + isChecked, "Short" );
}

Methods

Some controls use the same methods.
For examples of the same methods look here.

Method Description
ToggleButton.Destroy()
ToggleButton.GetAbsHeight()
ToggleButton.GetAbsWidth()
ToggleButton.GetChecked()
ToggleButton.GetHeight()
ToggleButton.GetPosition()
ToggleButton.GetText()
ToggleButton.GetTextSize( mode )
ToggleButton.GetType()
ToggleButton.GetVisibility()
ToggleButton.GetWidth()
ToggleButton.SetChecked( checked )
ToggleButton.SetMargins( left,top,right,bottom )
ToggleButton.SetOnTouch( callback )
ToggleButton.SetPadding( left, top, right, bottom )
ToggleButton.SetPosition( left, top, width, height )
ToggleButton.SetScale( x,y )
ToggleButton.SetSize( width, height )
ToggleButton.SetText( text )
ToggleButton.SetTextColor( colorCode )
ToggleButton.SetTextSize( size,mode )
ToggleButton.SetVisibility( HideShow )
built_in/togglebuttons.1427030587.txt.gz · Last modified: 2015/03/22 21:23 (external edit)