User Guide

ptToHotSpotID() 477
proxyServer
Usage
proxyServer serverType, "ipAddress", portNum
proxyServer()
Description
Command; sets the values of an FTP or HTTP proxy server.
Without parameters,
proxyServer() returns the settings of an FTP or HTTP proxy server.
Parameters
serverType
Optional. A symbol that specifies the type of proxy server. The value can be either
#ftp or #http.
ipAddress Optional. A string that specifies the IP address.
portNum Optional. An integer that specifies the port number.
Example
This statement sets up an HTTP proxy server at IP address 197.65.208.157 using port 5:
proxyServer #http,"197.65.208.157",5
This statement returns the port number of an HTTP proxy server:
put proxyServer(#http,#port)
If no server type is specified, the function returns 1.
This statement returns the IP address string of an HTTP proxy server:
put proxyServer(#http)
This statement turns off an FTP proxy server:
proxyServer #ftp,#stop
ptToHotSpotID()
Usage
-- Lingo syntax
spriteObjRef.ptToHotSpotID(point)
// JavaScript syntax
spriteObjRef.ptToHotSpotID(point);
Description
QuickTime VR function; returns the ID of the hotspot, if any, that is at the specified point. If
there is no hotspot, the function returns 0.
Parameters
point Required. Specifies the point to test.