flash

Is there an easy way for users to print Flash (Open Flash Charts) from their browser?

自作多情 提交于 2019-12-24 18:25:11
问题 Is there any easy way to print Flash Charts (Open Flash Charts 2) within a web page. Flash doesn't seem to print at all. I'm maintaining a health site for a client, and we use Open Flash Charts to draw multiple line charts for patients dynamic data. The client would like for patients to be able to easily print these charts, although Flash doesn't appear to be printable (unless I'm missing something). Unfortunately I can't provide a link to the page as an example at the moment as the patient

flash player: usage

北城以北 提交于 2019-12-24 18:24:13
问题 i use Adobe flash player in my site, and now i need to increment some filed in database, when user click on player. here is the script <div id="conteiner" style="text-align: center;" ></div> <script type="text/javascript"> var s1 = new SWFObject("player.swf","ply","420","380","9","#FFFFFF"); s1.addParam("allowfullscreen","true"); s1.addParam("allowscriptaccess","always"); s1.addParam("flashvars","file=<?=$video ?>"); s1.write("conteiner"); </script> i deside to use ajax for it, but how can i

Flash receiving status of file write from PHP?

陌路散爱 提交于 2019-12-24 18:12:56
问题 I am trying to make a simple Flash ActionScript3 program that saves some text to a text file (on my server) via a PHP script. I want the Flash program to be able to detect if the PHP script fails to write. Right now I'm just trying to get Flash to trace a status received from PHP. My below code is based on a few examples I've found online. Here is my Flash code: import flash.net.*; import flash.events.*; var varLoader:URLLoader = new URLLoader; var varURL:URLRequest = new URLRequest("http:/

As3 flash error “Cannot access a property or method of a null object reference”

杀马特。学长 韩版系。学妹 提交于 2019-12-24 17:43:10
问题 im trying to do a couple of basic games on flash that consist in random numbers but im receiving this error every time i run my scene: TypeError: Error #1009: Cannot access a property or method of a null object reference. at capacitacion_fla::MainTimeline/frame1() TypeError: Error #1009: Cannot access a property or method of a null object reference. at capacitacion_fla::MainTimeline/frame1() at flash.display::MovieClip/gotoAndStop() at capacitacion_fla::MainTimeline/fl

As3 flash error “Cannot access a property or method of a null object reference”

断了今生、忘了曾经 提交于 2019-12-24 17:41:48
问题 im trying to do a couple of basic games on flash that consist in random numbers but im receiving this error every time i run my scene: TypeError: Error #1009: Cannot access a property or method of a null object reference. at capacitacion_fla::MainTimeline/frame1() TypeError: Error #1009: Cannot access a property or method of a null object reference. at capacitacion_fla::MainTimeline/frame1() at flash.display::MovieClip/gotoAndStop() at capacitacion_fla::MainTimeline/fl

AxShockwaveFlashObjects again

泪湿孤枕 提交于 2019-12-24 17:33:52
问题 I was cheating from a sample program to integrate with Flash. I able to add a reference to ShockwaveFlashObjects.dll to my windows app, but What is 1- AXShockwaveFlashObjects. 2- How to add a reference to it, or I have to create it using some tool? Thanks 回答1: I'm not a Flash expert but I was researching something similar and I might have some information to help you... AxShockwaveFlashObjects is a COM library to allow you to integrate Flash content into your COM (or .NET) application. I'm

AxShockwaveFlashObjects again

我的梦境 提交于 2019-12-24 17:32:39
问题 I was cheating from a sample program to integrate with Flash. I able to add a reference to ShockwaveFlashObjects.dll to my windows app, but What is 1- AXShockwaveFlashObjects. 2- How to add a reference to it, or I have to create it using some tool? Thanks 回答1: I'm not a Flash expert but I was researching something similar and I might have some information to help you... AxShockwaveFlashObjects is a COM library to allow you to integrate Flash content into your COM (or .NET) application. I'm

Flash Player 10.1 for Flash Professional CS4 playerglobal.swc?

不羁岁月 提交于 2019-12-24 17:27:28
问题 Adobe released projector, debugger and plugin for Flash 10.1 yesterday. on my Mac i've installed the standalone player and debugger in Adobe Flash CS4/Players/ and Adobe Flash CS4/Players/Debug respectively. however, i think i need to download the globalplayer.swc for 10.1 so that Flash CS4 IDE is directed to use the new players. i've searched but i could only find the globalplayer.swc that was released during the 10.1 betas, and i'm not sure if that's the .swc i should use for the final 10.1

Center movieclip on point

孤街浪徒 提交于 2019-12-24 17:25:03
问题 I'm dynamically loading movie clips (SWFS) into attached clips (from the library). The loaded movies don't all have center points, meaning that their registration point isn't directly in its center. This poses a problem when I load them into the attached clips, because they don't center on the attached clips, which is what I want them to do. Is there a way to center a movieclip based on width and height instead of registration point? Thanks in advance! 回答1: Use getBounds. var bounds:Rectangle

How to detect in a Flex app if a camera is already in use by another application?

谁说我不能喝 提交于 2019-12-24 17:12:21
问题 I am making an application that plays the video stream from the user's local system (both Windows and Mac). I use the Camera.getCamera() method and in turn Camera.names to get a list of camera attached with the system. Unfortunately, if the camera is already in use by another application, say a desktop application on user's system, the browser is crashed. Is there any way that I can detect if a specific camera from the list of available camera is already in use by any other application? 回答1: