vCards

You can easily create a vCard using the built-in action makeVCard().

makeVCard(text title, text subtitle, text ?imagePath)

This generates a vCard using your parameters at compile time, inserting the title as the name, and the subtitle as the org/company.

It will also optionally base 64 encode at compile time the image at the path specified as the photo. Since this happens at compile time, the image path must be available at compile time. No variables are allowed unless they evaluate to a text literal.

The example below uses this built-in action to make a vCard menu:

/* Generate items */
@items = []
repeat i for 3 {
    @items += makeVCard("Title {i}", "Subtitle {i}")
}

/* Flatten items to text */
@menuItems = "{items}"

/* Create contact card file */
@vcf = setName(menuItems, "menu.vcf")

/* Coerce type to contact */
@contact = vcf.contact

/* Use chooseFromList to prompt the user with our menu */
@chosenItem = chooseFromList(contact, "Prompt")

/* chosenItem contains the title of the chosen item */
alert(chosenItem, "You chose:")