IdleTasks

All attachable idle tasks.

Methods:

[], add, anyItem, count, everyItem, firstItem, item, itemByID, itemByName, itemByRange, lastItem, middleItem, nextItem, previousItem, toSource

Property Listing

Property

Type

Access

Description

length

Number

readonly

The number of objects in the collection.

Method Listing

IdleTask [] (index:Number)

Returns the IdleTask with the specified index.

Parameter

Type

Description

index

Number

The index.

IdleTask add (withProperties:Object)

Creates a new IdleTask.

Parameter

Type

Description

withProperties

Object

Initial values for properties of the new IdleTask (Optional)

IdleTask anyItem ()

Returns any IdleTask in the collection.

Number count ()

Displays the number of elements in the IdleTask.

IdleTask everyItem ()

Returns every IdleTask in the collection.

IdleTask firstItem ()

Returns the first IdleTask in the collection.

IdleTask item (index:Varies LongInteger String)

Returns the IdleTask with the specified index or name.

Parameter

Type

Description

index

LongInteger

String

The index or name. Can accept: Long Integer or String.

IdleTask itemByID (id:Number)

Returns the IdleTask with the specified ID.

Parameter

Type

Description

id

Number

The ID.

IdleTask itemByName (name:String)

Returns the IdleTask with the specified name.

Parameter

Type

Description

name

String

The name.

IdleTask itemByRange (from:Varies IdleTask LongInteger String, to:Varies IdleTask LongInteger String)

Returns the IdleTasks within the specified range.

Parameter

Type

Description

from

IdleTask

LongInteger

String

The IdleTask, index, or name at the beginning of the range. Can accept: IdleTask, Long Integer or String.

to

IdleTask

LongInteger

String

The IdleTask, index, or name at the end of the range. Can accept: IdleTask, Long Integer or String.

IdleTask lastItem ()

Returns the last IdleTask in the collection.

IdleTask middleItem ()

Returns the middle IdleTask in the collection.

IdleTask nextItem (obj:IdleTask)

Returns the IdleTask whose index follows the specified IdleTask in the collection.

Parameter

Type

Description

obj

IdleTask

The IdleTask whose index comes before the desired IdleTask.

IdleTask previousItem (obj:IdleTask)

Returns the IdleTask with the index previous to the specified index.

Parameter

Type

Description

obj

IdleTask

The index of the IdleTask that follows the desired IdleTask.

String toSource ()

Generates a string which, if executed, will return the IdleTask.

Object of

Application.idleTasks