| Thread Title: |
OO Programming Questions |
| End Date: |
11/17/02
6 Posts
|
| Summary: |
Here you'll find the URL for a Flash 5 tutorial and several book recommendations for those interested in learning more about object oriented programming (OOP) concepts. |
| |
| Thread Title: |
OT: Preventing URL Display in Status bar |
| End Date: |
11/17/02
1 Posts
|
| Summary: |
To prevent a link's URL from displaying in the status bar, use Javascript like this:
<a href="index.cfm?fuseaction=home" onmouseover="window.status='Click for
home page...'; return true"
onmouseout="window.status=''; return
true">Home</a> |
| Related Threads: |
Preventing URL Display in Status bar
|
| |
| Thread Title: |
RecordCount Question |
| End Date: |
11/17/02
6 Posts
|
| Summary: |
If you're looping over a query recordset to display results based on a true recordcount condition, be sure to enclose the CFLOOP or CFOUTPUT tags within the CFIF tags. Otherwise, if there are no records, the CFIF will never process. |
| |