Good Resources
http://www.codeproject.com/KB/audio-video/flashexternalapi.aspx
Add Shockwave Flash Movie To Your Form
Rightclick in the form Tools popout menu and select ‘Choose Items’.
Select the ‘COM Components’ tab and check ‘ShockwaveFlashObject’ which should be enabled if you have flash installed.
Properties to change:
Menu False
Form Load
AxShockwaveFlash1->Left = 0;
AxShockwaveFlash1->Top = 0;
AxShockwaveFlash1->Width = this->Width;
AxShockwaveFlash1->Height = this->Height;
AxShockwaveFlash1->Movie = Path::GetDirectoryName(Application::ExecutablePath) + "\\topman1.swf";
AxShockwaveFlash1->FrameNum = 0;
Callback Function
Create the FSCommand event.
private: System::Void AxShockwaveFlash1_FSCommand(System::Object^ sender, AxShockwaveFlashObjects::_IShockwaveFlashEvents_FSCommandEvent^ e)
{
if (e->command == "status")
{
//----- STATUS -----
if (e->args == "start")
USEFUL?
We benefit hugely from resources on the web so we decided we should try and give back some of our knowledge and resources to the community by opening up many of our company’s internal notes and libraries through resources like this. We hope you find it helpful.
Please feel free to comment if you can add help to this page or point out issues and solutions you have found, but please note that we do not provide support here. If you need help with a problem please use one of the many online forums.