axShockwaveFlash_FSCommand not responding on some machines

Course Queries Syllabus Queries 2 years ago

0 2 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (2)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago


I have created a C sharp project in which i have added a ShockwaveFlashObject to play my swf file. The problem i am facing is when i create an installer for my project it works correctly on my machine on installation, but on my laptop the swf loads correctly but doesn't respond to the _FSCommand. I cannot use a try and catch block as it is not entering the FSCommand handle. Do i need to bundle something with my installation? The laptop i am using is brand new and i wanted it that way so that i know what all stuff is needed for things to work correctly so that i can add prerequisites to my installer. Also idk if this information is of any use but I am using advanced installer to build and exe for my project.

PS i have added things like the below code to know if FSCommand gets executed.

MessageBox.Show("step 1/2/3");

Here is the entire code.

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
                                                
                                                
0 views
0 shares
profilepic.png
manpreet 2 years ago

Is flash player ActiveX control installed on your laptop? You have to install it, otherwise there's nothing that can play your .swf file.


0 views   0 shares

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.

tuteehub community

Join Our Community Today

Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.

tuteehub community