home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2002 #7 / K-CD-7-2002.ISO / Tools / K-CS.dcr / 00480_HyperJump.ls < prev    next >
Encoding:
Text File  |  2002-04-10  |  380 b   |  18 lines

  1. property Address
  2.  
  3. on mouseUp
  4.   gotoNetPage("http://" & Address)
  5. end
  6.  
  7. on getBehaviorDescription
  8.   return "Go to target Internet address when we're clicked."
  9. end
  10.  
  11. on getPropertyDescriptionList
  12.   if voidp(Address) then
  13.     set Address to "www.komputer.dk"
  14.   end if
  15.   set p_list to [#Address: [#default: Address, #format: #string, #comment: "Target net Address"]]
  16.   return p_list
  17. end
  18.