LassoScript Utility
Basics Browse Detail

[Image_URL]

Tag Link [Image_URL] Category Image
Type Substitution Source Available No
Support Preferred Version 3.0
Change Unchanged Data Source FileMaker Pro
Output Type String Security None
Implementation LCAPI Sets Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0, Lasso 5.0, Lasso 3.x

Description

[Image_URL] returns the URL for an image from a FileMaker Pro database. Requires a single parameter, the name of the container field which contains the image.

Syntax

[Image_URL: 'Field_Name']

Parameters

Required Parameters
Field_Name The name of the FileMaker Pro container field that contains the image to be returned.

Examples

To display a series of images from a FileMaker Pro database:

Use the [Image_URL] tag in HTML <img> tags within the found set results. The following example returns the Photo field from each record in the Contacts.fp5 database, People layout.

[Inline: -FindAll,
    -Database='Contacts.fp5',
    -Table='People']
  [Records]
    <br><img src="[Image_URL: 'Photo']">
  [/Records]
[/Inline]