How would one go about creating this as a primary nav object. So that the images and links were all dynamic.
Check out the farcry 'tree' api: http://farcry.daemon.com.au/cfcdoc/
You'll want to do something like this in the webskin template:
<cfset navFilter = ArrayNew(1) />
<cfset navFilter[1] = "status IN (#listQualify(request.mode.lvalidstatus, "'")#)" />
<cfset qNav = application.factory.oTree.getDescendants(
objectid=application.navid.home,
depth=1,
aFilter=navFilter />
then loop over the qNav object to build your <ul> or <dl>
-- tim lucas
http://www.toolmantim.com
--- You are currently subscribed to farcry-dev as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] Aussie Macromedia Developers: http://lists.daemon.com.au/
