flashplayer-10

Set stage vanishing point in Flash via actionscript 3

此生再无相见时 提交于 2020-01-03 16:44:03
问题 I'm working with a few designers, each of whom have created 3D animations (using fp 10 capabilities) for use in the same flash application. Each 3D animation is a unique movieclip that will ultimately be part of the same .fla file. The problem I'm having is that each of the movieclips was created in a separate .fla, and each .fla had different settings for the vanishing point for the stage. This means that after importing the various moveiclips into my library, none of the visual assets are

Why don't flash videos play after upgrading to Flash 10?

北慕城南 提交于 2019-12-23 04:45:11
问题 Upgraded to Flash 10 today and now many flash videos aren't playing on a lot of sites, including a couple i've created. What's the fix? edit Let me clarify here. this question is intended to find the code change that is needed to allow users of all versions of flash, including the most recent release, to be able to see them. 回答1: Flash APIs only provide the version number in String form, so the probable cause is scripts that pull a single character out of the version string, and see "1"

TWebBrowser crashes with embedded Youtube clips

杀马特。学长 韩版系。学妹 提交于 2019-12-17 19:47:42
问题 Here is my code: type TForm1 = class(TForm) WebBrowser1: TWebBrowser; Button1: TButton; Button2: TButton; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); end; implementation uses ActiveX; procedure TForm1.Button1Click(Sender: TObject); // method 1 var HtmlFile: string; begin HtmlFile := ExtractFilePath(Application.ExeName) + 'test.html'; WebBrowser1.Navigate(HtmlFile); end; procedure LoadHtml(wb: TWebBrowser; HTMLStr: string); var aStream: TMemoryStream;

Not receiving <policy-file-request/> string when opening a secure socket from flash

僤鯓⒐⒋嵵緔 提交于 2019-12-12 01:57:40
问题 I have an app that is trying to open a secure socket connection on a web server. I hosted a small code that servers the policy file on port 843 as is required by flash player in order to make the socket connection. But i am not receiving the specified string <policy-file-request/> , in place of it i am getting the first string that is sent to port 443 during secure socket connection. This flash socket policy server is taking more time than actual development process. Please shed some light.

Open pdf in flash player 10

心不动则不痛 提交于 2019-12-01 14:42:19
I need to open a PDF in flash player 10. The swf will not be running in a browser and there will not be an adobe reader program on the system. I need to know if its possible to open a PDF without converting it in any way, in the flash player. I've searched google for countless hours and nothing has come up, only conversion software and code to open it in a browser. Thanks, Jordan Read this Article. http://va.lent.in/blog/tag/pdf2swf/ It goes into great detail of the research and limitations of PDF with ActionScript If this won't be running in the browser, how will it be running? As a stand

Open pdf in flash player 10

倖福魔咒の 提交于 2019-12-01 13:53:53
问题 I need to open a PDF in flash player 10. The swf will not be running in a browser and there will not be an adobe reader program on the system. I need to know if its possible to open a PDF without converting it in any way, in the flash player. I've searched google for countless hours and nothing has come up, only conversion software and code to open it in a browser. Thanks, Jordan 回答1: Read this Article. http://va.lent.in/blog/tag/pdf2swf/ It goes into great detail of the research and

Vector.<> vs array

左心房为你撑大大i 提交于 2019-11-29 13:26:49
What are the pros and contras of using a Vector.<> instead of array ? From the adobe documentation page : As a result of its restrictions, a Vector has two primary benefits over an Array instance whose elements are all instances of a single class: Performance: array element access and iteration are much faster when using a Vector instance than when using an Array. Type safety: in strict mode the compiler can identify data type errors such as assigning a value of the incorrect data type to a Vector or expecting the wrong data type when reading a value from a Vector. Note, however, that when

TWebBrowser crashes with embedded Youtube clips

走远了吗. 提交于 2019-11-28 11:30:51
Here is my code: type TForm1 = class(TForm) WebBrowser1: TWebBrowser; Button1: TButton; Button2: TButton; procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); end; implementation uses ActiveX; procedure TForm1.Button1Click(Sender: TObject); // method 1 var HtmlFile: string; begin HtmlFile := ExtractFilePath(Application.ExeName) + 'test.html'; WebBrowser1.Navigate(HtmlFile); end; procedure LoadHtml(wb: TWebBrowser; HTMLStr: string); var aStream: TMemoryStream; begin wb.Navigate('about:blank'); // reset the webbrowser while wb.ReadyState < READYSTATE_INTERACTIVE do /

Vector.<> vs array

余生颓废 提交于 2019-11-28 07:02:29
问题 What are the pros and contras of using a Vector.<> instead of array ? 回答1: From the adobe documentation page: As a result of its restrictions, a Vector has two primary benefits over an Array instance whose elements are all instances of a single class: Performance: array element access and iteration are much faster when using a Vector instance than when using an Array. Type safety: in strict mode the compiler can identify data type errors such as assigning a value of the incorrect data type to