Overview
Images need to
...
have a URL to be added into a Report Template.
Steps
...
- Open the Report Template Update page (click here for steps)
- Click in the report body where the image is to be placed
- Click the Insert/edit Image button
- In the Source field enter the URL for the image
- Optionally, enter an image description
- Adjust the image dimensions, if needed
- Click Ok
Tip |
---|
The image should be on a secure server (https) to keep the windows security box from displaying |
...
- Click on the image
- In the bottom right a Properties icon will display
- Click on the properties icon
- The Properties window will display
- Enter/edit the properties
- Click OK
...
Using an image in skip logic (example)
The following code would be pasted into the Design tab of the report template
<%
if (#image==0) Output.Write("<img src='https://dl.dropbox.com/u/13090636/Contact%20Management/StartupSide1.png'>");
else if (#image==1) Output.Write("<img src='https://dl.dropbox.com/u/13090636/Contact%20Management/StartupSide2.png'>");
%>
Note |
---|
Before pasting any code or text into the Design tab of a Report Template, first paste the content into Notepad to strip the formatting |
Alternately, the following code could be pasted into the HTML tab of the report template
Info |
---|
This method is more complicated and adding the code directly into the Design tab is recommended |
...