ShowSettings
in the Macromedia Flash Settings window, under the Camera tab, there is the firewire video cam. can video-messaging be performed over the internet with a videoCamera 1) within the Flash Player?
2) can this be created using just Flash?
FlashKit > Flash Help > Flash Newbies
Posted on: 11-03-2003, 10:55 AM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Using ShowSettings
Hi,
I want to record webcam and microphone stream with FMS.
When user load page, the setting panel is shown but user can't memorize his choice. To memorize, he needs to right click, choose "parameters" and check the checkbox in the setting panel for webcam and microphone.
So I add System.showSettings(0), but this code always show the panel, even if user checked "remember me" checkbox.
Can I check if using webcam and microphone is authorized for this website ? So I could show panel with System.showSettings(0) only if not.
thx,
heulman
Edited: 01/08/2009 at 03:00:41 AM by heulman
System.ShowSettings();
O.K. Some undocumented features of Flash MX. Don't know if this has been
discussed earlier or not..
In the Macromedia's documentation they have given the System object.
There are four main pats of the system object.
1) Security
2) ShowSettings
3) Product
4) Capabilities
The Security and Capabilities are documented by Macromedia, but not the
Product and ShowSettings. Product, we have talked of earlier.
ShowSettings is a simple method which when called opens the settings dialog
box for the user where he can alter the settings of the microphone, camera,
etc.
You can call the method by simply writing.
System.ShowSettings();
Warm regards,
Pavan
System.ShowSettings()
O.K. Some undocumented features of Flash MX. Don't know if this has been
discussed earlier or not..
In the Macromedia's documentation they have given the System object.
There are four main pats of the system object.
1) Security
2) ShowSettings
3) Product
4) Capabilities
The Security and Capabilities are documented by Macromedia, but not the
Product and ShowSettings. Product, we have talked of earlier.
ShowSettings is a simple method which when called opens the settings dialog
box for the user where he can alter the settings of the microphone, camera,
etc.
You can call the method by simply writing.
System.ShowSettings();
Warm regards,
Pavan
|