Archive for December, 2007

Web server on xp - Camera.muted Availability Flash Player 6. Usage active_cam.muted Description

Monday, December 31st, 2007

Camera.muted Availability Flash Player 6. Usage active_cam.muted Description Read-only property; a Boolean value that specifies whether the user has denied access to the camera (true) or allowed access (false) in the Flash Player Privacy Settings panel. When this value changes, Camera.onStatus is invoked. For more information, see Camera.get(). See also Camera.get(), Camera.onStatus Camera.name Availability Flash Player 6. Usage active_cam.name Description Read-only property; a string that specifies the name of the current camera, as returned by the camera hardware. Example The following example displays the name of the default camera in the Output panel. In Windows, this name is the same as the device name listed in the Scanners and Cameras properties sheet. my_cam = Camera.get(); trace(”The camera name is: ” + my_cam.name); See also Camera.get(), Camera.names 320 Chapter 12: ActionScript Dictionary
In case you need affordable webhost to host your website, our recommendation is ecommerce web host services.

Camera.motionLevel Availability Flash Player 6. Usage active_cam.motionLevel Description

Sunday, December 30th, 2007

Camera.motionLevel Availability Flash Player 6. Usage active_cam.motionLevel Description Read-only property; a numeric value that specifies the amount of motion required to invoke Camera.onActivity(true). Acceptable values range from 0 to 100. The default value is 50. Video can be displayed regardless of the value of the motionLevel property. For more information, see Camera.setMotionLevel(). See also Camera.activityLevel, Camera.onActivity, Camera.onStatus, Camera.setMotionLevel() Camera.motionTimeOut Availability Flash Player 6. Usage active_cam.motionTimeOut Description Read-only property; the number of milliseconds between the time the camera stops detecting motion and the time Camera.onActivity(false) is invoked. The default value is 2000 (2 seconds). To set this value, use Camera.setMotionLevel(). Example The following example sets the number of milliseconds between the time the camera stops detecting motion and the time Camera.onActivity(false) is invoked to 1000 milliseconds, or one second. if(my_cam.motionTimeOut >= 1000){ my_cam.setMotionLevel(myCam.motionLevel, 1000); } See also Camera.onActivity, Camera.setMotionLevel() Camera.motionTimeOut 319
Looking for affordable and reliable webhost to host and run your business application? Then look no more and go to servlet web hosting services.

Ecommerce web host - Camera.height Availability Flash Player 6. Usage active_cam.height Description

Sunday, December 30th, 2007

Camera.height Availability Flash Player 6. Usage active_cam.height Description Read-only property; the current capture height, in pixels. To set a value for this property, use Camera.setMode(). Example The following line of code updates a text box in the user interface with the current height value. my_txt._height = myCam.height; See also the example for Camera.setMode(). See also Camera.setMode(), Camera.width Camera.index Availability Flash Player 6. Usage active_cam.index Description Read-only property; a zero-based integer that specifies the index of the camera, as reflected in the array returned by Camera.names. Example The following example gets the camera that has the value of index. my_cam = Camera.get(index); See also Camera.get(), Camera.names 318 Chapter 12: ActionScript Dictionary
Note: If you are looking for cheap and reliable webhost to host and run your mysql application check mysql web server services.

Web design programs - You can t use ActionScript to set the Allow

Saturday, December 29th, 2007

You can t use ActionScript to set the Allow or Deny value for a user, but you can display the Privacy panel for the user by using System.showSettings(0). If the user selects Remember, Flash Player no longer displays the Privacy dialog box for movies from this domain. If Camera.get returns null, either the camera is in use by another application, or there are no cameras installed on the system. To determine whether any cameras are installed, use Camera.names.length. To display the Flash Player Camera Settings panel, which lets the user choose the camera to be referenced by Camera.get(), use System.showSettings(3). Scanning the hardware for cameras takes time. When Flash finds at least one camera, the hardware is not scanned again for the lifetime of the player instance. However, if Flash doesn t find any cameras, it will scan each time Camera.get is called. This is helpful if a user has forgotten to connect the camera; if your SWF file provides a Try Again button that calls Camera.get, Flash can find the camera without the user having to restart the SWF file. Example The following example captures and displays video locally within a Video object named my_video on the Stage. var my_cam = Camera.get(); my_video.attachVideo(myCam); See also Camera.index, Camera.muted, Camera.names, Camera.onStatus, Camera.setMode(), System.showSettings(), Video.attachVideo() Camera.get() 317
You need excellent and relaible webhost company to host your web applications? Then pay a visit to Inexpensive Web Hosting services.

Returns If index is not specified, this

Saturday, December 29th, 2007

Returns If index is not specified, this method returns a reference to the default camera or, if it is in use by another application, to the first available camera. (If there is more than one camera installed, the user may specify the default camera in the Flash Player Camera Settings panel.) If no cameras are available or installed, the method returns null. If index is specified, this method returns a reference to the requested camera, or null if it is not available. Description Method; returns a reference to a Camera object for capturing video. To actually begin capturing the video, you must attach the Camera object to a Video object (see Video.attachVideo()). Unlike objects that you create using the new constructor, multiple calls to Camera.get() reference the same camera. Thus, if your script contains the lines first_cam = Camera.get() and second_cam = Camera.get(), both first_cam and second_cam reference the same (default) camera. In general, you shouldn t pass a value for index; simply use Camera.get() to return a reference to the default camera. By means of the Camera settings panel (discussed later in this section), the user can specify the default camera Flash should use. If you pass a value for index, you might be trying to reference a camera other than the one the user prefers. You might use index in rare cases for example, if your application is capturing video from two cameras at the same time. When a SWF file tries to access the camera returned by Camera.get(), Flash Player displays a Privacy dialog box that lets the user choose whether to allow or deny access to the camera. (Make sure your Stage size is at least 215 x 138 pixels; this is the minimum size Flash requires to display the dialog box.) When the user responds to this dialog box, the Camera.onStatus event handler returns an information object that indicates the user s response. To determine whether the user has denied or allowed access to the camera without processing this event handler, use the Camera.muted property. The user can also specify permanent privacy settings for a particular domain by right-clicking (Windows) or Control-clicking (Macintosh) while a SWF file is playing, choosing Settings, opening the Privacy panel, and selecting Remember. 316 Chapter 12: ActionScript Dictionary
We recommend high quality webhost to host and run your jsp application: christian web host services.

Camera.fps Availability Flash Player (Web design conference) 6. Usage active_cam.fps Description

Saturday, December 29th, 2007

Camera.fps Availability Flash Player 6. Usage active_cam.fps Description Read-only property; the maximum rate at which you want the camera to capture data, in frames per second. The maximum rate possible depends on the capabilities of the camera; that is, if the camera doesn t support the value you set here, this frame rate will not be achieved. To set a desired value for this property, use Camera.setMode(). To determine the rate at which the camera is currently capturing data, use the Camera.currentFps property. Example The following example sets the fps rate of the active camera, myCam.fps, to the value provided by the user s text box, this.config.txt_fps. if (this.config.txt_fps != undefined) { myCam.setMode(myCam.width, myCam.height, this.config.txt_fps, false); } Note: The setMode function does not guarantee the requested fps setting; it sets the fps you requested or the fastest fps available. See also Camera.currentFps, Camera.setMode() Camera.get() Availability Flash Player 6. Usage Camera.get([index]) Note: The correct syntax is Camera.get(). To assign the Camera object to a variable, use syntax like active_cam = Camera.get(). Parameters index An optional zero-based integer that specifies which camera to get, as determined from the array returned by the Camera.names property. To get the default camera (which is recommended for most applications), omit this parameter. Camera.get() 315
Note: If you are looking for cheap and reliable webhost to host and run your mysql application check mysql web server services.

Camera.bandwidth Availability Flash Player 6. Usage active_cam.bandwidth Description (Web servers)

Friday, December 28th, 2007

Camera.bandwidth Availability Flash Player 6. Usage active_cam.bandwidth Description Read-only property; an integer that specifies the maximum amount of bandwidth the current outgoing video feed can use, in bytes. A value of 0 means that Flash video can use as much bandwidth as needed to maintain the desired frame quality. To set this property, use Camera.setQuality(). Example The following example loads another SWF file if the camera s bandwidth is 32 kilobytes or greater. if(myCam.bandwidth >= 32768){ loadMovie(”splat.swf”,_root.hiddenvar); } See also Camera.setQuality() Camera.currentFps Availability Flash Player 6. Usage active_cam.currentFps Description Read-only property; the rate at which the camera is capturing data, in frames per second. This property cannot be set; however, you can use the Camera.setMode() method to set a related property Camera.fps which specifies the maximum frame rate at which you would like the camera to capture data. See also Camera.fps, Camera.setMode() 314 Chapter 12: ActionScript Dictionary
From our experience, we are can tell you that you can find a reliable and cheap webhost service at Java Web Hosting services.

Shared web hosting - Property (read-only) Description Camera.motionTimeOut The number of milliseconds

Friday, December 28th, 2007

Property (read-only) Description Camera.motionTimeOut The number of milliseconds between the time when the camera stops detecting motion and the time Camera.onActivity(false) is invoked. Camera.muted A Boolean value that specifies whether the user has allowed or denied access to the camera. Camera.name The name of the camera as specified by the camera hardware. Camera.names Class property; an array of strings reflecting the names of all available video capture devices, including video cards and cameras. Camera.quality An integer specifying the required level of picture quality, as determined by the amount of compression being applied to each video frame. Camera.width The current capture width, in pixels. Event handler summary for the Camera class Event handler Description Camera.onActivity Invoked when the camera starts or stops detecting motion. Camera.onStatus Invoked when the user allows or denies access to the camera. Constructor for the Camera class See Camera.get(). Camera.activityLevel Availability Flash Player 6. Usage active_cam.activityLevel Description Read-only property; a numeric value that specifies the amount of motion the camera is detecting. Values range from 0 (no motion is being detected) to 100 (a large amount of motion is being detected). The value of this property can help you determine if you need to pass a setting to Camera.setMotionLevel(). If the camera is available but is not yet being used because Video.attachVideo() has not been called, this property is set to -1. If you are streaming only uncompressed local video, this property is set only if you have assigned a function to the Camera.onActivity event handler. Otherwise, it is undefined. See also Camera.motionLevel, Camera.setMotionLevel() Camera.activityLevel 313
If you are looking for cheap and quality webhost to host and run your website check Jboss Web Hosting services.

See also function, Function.call() Camera class Availability Flash

Thursday, December 27th, 2007

See also function, Function.call() Camera class Availability Flash Player 6. Description The Camera class is primarily for use with Macromedia Flash Communication Server, but can be used in a limited fashion without the server. The Camera class lets you capture video from a video camera attached to the computer that is running the Macromedia Flash Player for example, to monitor a video feed from a web camera attached to your local system. (Flash provides similar audio capabilities; for more information, see the Microphone class entry.) To create or reference a Camera object, use Camera.get(). Method summary for the Camera class Method Description Camera.get() Returns a default or specified Camera object, or null if the camera is not available. Camera.setMode() Sets aspects of the camera capture mode, including height, width, and frames per second. Camera.setMotionLevel() Specifies how much motion is required to invoke Camera.onActivity(true)and how much time should elapse without motion before Camera.onActivity(false) is invoked. Camera.setQuality() An integer that specifies the maximum amount of bandwidth that the current outgoing video feed can use, in bytes per second. Property summary for the Camera class Property (read-only) Description Camera.activityLevel The amount of motion the camera is detecting. Camera.bandwidth The maximum amount of bandwidth the current outgoing video feed can use, in bytes. Camera.currentFps The rate at which the camera is capturing data, in frames per second. Camera.fps The rate at which you would like the camera to capture data, in frames per second. Camera.height The current capture height, in pixels. Camera.index The index of the camera, as reflected in the array returned by Camera.names. Camera.motionLevel The amount of motion required to invoke Camera.onActivity(true). 312 Chapter 12: ActionScript Dictionary
You need excellent and relaible webhost company to host your web applications? Then pay a visit to Inexpensive Web Hosting services.

Button._ymouse Availability Flash Player 6. Usage my_btn._ymouse Description

Thursday, December 27th, 2007

Button._ymouse Availability Flash Player 6. Usage my_btn._ymouse Description Property (read-only); indicates the y coordinate of the mouse position relative to the button. See also Button._xmouse Button._yscale Availability Flash Player 6. Usage my_btn._yscale Description Property; the vertical scale of the button as applied from the registration point of the button, expressed as a percentage. The default registration point is (0,0). See also Button._y, Button._x, Button._xscale call() Availability Flash Player 4. This action was deprecated in Flash 5, and Macromedia recommends that you use the function action instead. Usage call(frame) Parameters frame The label or number of a frame in the Timeline. Returns Nothing. Description Deprecated action; executes the script in the called frame without moving the playhead to that frame. Local variables do not exist after the script executes. call() 311
We recommend cheap and reliable webhost to host and run your web applications: Coldfusion Web Hosting services.