Script Steps Reference
Table Of Contents
- Chapter 1 Introduction
- Chapter 2 Control script steps
- Chapter 3 Navigation script steps
- Chapter 4 Editing script steps
- Chapter 5 Fields script steps
- Set Field
- Set Next Serial Value
- Insert Text
- Insert Calculated Result
- Insert From Index
- Insert From Last Visited
- Insert Current Date
- Insert Current Time
- Insert Current User Name
- Insert Picture
- Insert QuickTime
- Insert Object (Windows)
- Insert File
- Update Link (Windows)
- Replace Field Contents
- Relookup Field Contents
- Export Field Contents
- Chapter 6 Records script steps
- Chapter 7 Found Sets script steps
- Chapter 8 Windows script steps
- Chapter 9 Files script steps
- Chapter 10 Accounts script steps
- Chapter 11 Spelling script steps
- Chapter 12 Open Menu Item script steps
- Chapter 13 Miscellaneous script steps
- Appendix A Glossary
Chapter 13
|
Miscellaneous script steps 129
• You can send html data to a web viewer by including the data in a URL, using the
following format:
data:[<mediatype>][;base64],<data>
Where the following syntax applies:
dataurl = "data:" [ mediatype ] [ ";base64" ] "," data
mediatype = [ type "/" subtype ] *( ";" parameter )
data = *urlchar
parameter = attribute "=" value
More information about the “data URL scheme” can be found on the web.
• In FileMaker Pro 8.5, data URLs will work on Mac OS_X but not in Windows. In
addition, FileMaker Pro supports only UTF-16 character encoding. Character data
encoded using other methods will not display the target of the URL.
Examples
The following example resets the web viewer named “Web Viewer 1” to its originally
specified web address:
Set Web Viewer [Object Name: "Web Viewer 1"; Action: Reset]
The following example displays the FileMaker, Inc. home page in the active web viewer,
or displays an error message if the active object is not a web viewer:
If [GetLayoutObjectAttribute( Get (ActiveLayoutObjectName);
"objectType") = "web viewer"]
Set Web Viewer [Object Name: Get (ActiveLayoutObjectName);
URL: "http://www.filemaker.com"]
Else
Show Custom Dialog ["This object is not a web viewer."]
End If
The following example uses the data URL scheme to display a small icon in a web viewer
named WV2:
Set Web Viewer [Object Name: "WV2"; Action: URL "data:image/
gif;base64,R0lGODlhFwAMAKEAAL+/v///
AAAAUwAAACH5BAEAAAAALAAAAAAXAAwAAAI7hBGHapHcXJKPumizpigI+QliSH0XI
jokWJ6oB4+qt0Zmaqpjesxz7st1YD8ZEbhJajAuDgfSYTx60wIAOw=="]
Open URL
Format
Open URL [No dialog; <URL>]