axShockwaveFlash_FSCommand在某些机器上没有响应
本文关键字:响应 机器 FSCommand axShockwaveFlash | 更新日期: 2023-09-27 18:08:03
我创建了一个C sharp项目,其中我添加了一个shockwaveflashhobject来播放我的swf文件。我面临的问题是,当我为我的项目创建一个安装程序时,它在安装时在我的机器上正常工作,但在我的笔记本电脑上,swf正确加载,但不响应_FSCommand。我不能使用try和catch块,因为它没有进入FSCommand句柄。我需要在我的安装中捆绑一些东西吗?我使用的笔记本电脑是全新的,我想要这样,这样我就知道所有的东西都需要正确工作,这样我就可以在我的安装程序中添加先决条件。我还想知道这些信息是否有用,但我正在使用高级安装程序来为我的项目构建和exe。
PS我添加了下面的代码来知道FSCommand是否被执行。
MessageBox.Show("step 1/2/3");
这是完整的代码。
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using MySql.Data.MySqlClient;
using System.IO;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Globalization;
namespace WindowsFormsApplication1
{
public partial class frmFlashIntro : Form
{
public Form FormfrmMainRef { get; set; }
public frmFlashIntro()
{
InitializeComponent();
axShockwaveFlash1.Playing = true;
FormBorderStyle = FormBorderStyle.None;
WindowState = FormWindowState.Maximized;
string currentPath = Directory.GetCurrentDirectory();
axShockwaveFlash1.Movie = "file://''" + currentPath + "''intro.swf";
}
private void axShockwaveFlash1_FSCommand(object sender, AxShockwaveFlashObjects._IShockwaveFlashEvents_FSCommandEvent e)
{
MessageBox.Show("step 1");
string btn = e.command.ToString();
MessageBox.Show("step 2");
if (btn == "play")
{
MessageBox.Show("step 3");
try
{
MessageBox.Show("step 4");
var form2 = new frmMain();
MessageBox.Show("step 5");
this.Hide();
MessageBox.Show("step 6");
form2.Show();
}
catch (Exception ex) { MessageBox.Show(ex.ToString()); }
}
if (btn == "syllabus")
{
MySqlConnection con = new MySqlConnection(Properties.Settings.Default.conString);
con.Open();
Syllabus_usageInformation syl = new Syllabus_usageInformation(this);
MySqlCommand cmd = new MySqlCommand("SELECT ImageFiles FROM misc WHERE id=1", con);
byte[] img = (byte[])cmd.ExecuteScalar();
string strFn = Convert.ToString(DateTime.Now.ToFileTime());
FileStream fs = new FileStream(strFn, FileMode.CreateNew, FileAccess.Write);
fs.Write(img, 0, img.Length);
fs.Flush();
fs.Close();
con.Close();
syl.kpImageViewer1.OpenButton = false;
syl.kpImageViewer1.ImagePath = strFn;
syl.Show();
this.Hide();
}
if (btn == "usageInformation")
{ }
}
}
}
您的笔记本电脑上安装了flash播放器ActiveX控件吗?你必须安装它,否则没有任何东西可以播放你的。swf文件