Feb 10, 2004 #1 ashu24 Technical User Joined Jan 25, 2002 Messages 9 Location 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
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
Feb 10, 2004 #2 kennethkawamoto Technical User Joined Nov 19, 2002 Messages 2,710 Location GB 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! Upvote 0 Downvote
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!