Previous Index Next

BridgePlus.framework, SMSForder Class Methods

Category

Miscellaneous methods

Method

timeValuesFrom:

Summary

Pass an AS date or NSDate. Returns an array of {hour, minutes, seconds, milliseconds} in the current calendar.

Signature

+ (NSArray *)timeValuesFrom:(id)ASOrNSDate

Parameters

ASOrNSDate = an AS date or NSDate

Result

an array of {hour, minutes, seconds, milliseconds}

Availability

Version 1.3.0

Notes

 

Sample

use scripting additions

use framework "Foundation"

use script "BridgePlus"

load framework


get (current date)

--> date "Monday, 23 November 2015 at 11:59:42 AM"

set theResult to current application's SMSForder's timeValuesFrom:(current date)

ASify from theResult

--> {11, 59, 42, 0}

theResult as list

--> {11, 59, 42, 0}


Click here to open script in a script editor