Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ActivX Control's methods in director

Status
Not open for further replies.

ashu24

Technical User
Jan 25, 2002
9
0
0
IN
Hi,

I am learning Director. and i want to know
how can i use ActivX control's Methods in Director?

Can Any one help me out here?


Warm Regards
Ashutosh
 
ActiveX Control method is called using either:
Code:
--
MethodName(sprite N, param1, param2, ... )
--
or
Code:
--
sprite(N).MethodName(param1, param2, ... )
--

For example if you want to tell ActiveX Browser Control in Sprite channel 3 to go to a web page, you can do either:
Code:
--
Navigate(sprite 3, "[URL unfurl="true"]http://www.google.com")[/URL]
--
or
Code:
--
sprite(3).Navigate("[URL unfurl="true"]http://www.google.com")[/URL]
--

One advice, do not place ActiveX Control in frame 1. Why? Because it wouldn’t work if you did!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top