How to insert Flash in Developer 6i

Asked By 0 points N/A Posted on -
qa-featured

I am fresh to Developer 6i and is studying my own, but is familiar with Flash. I need to embed Flash inside Developer 6i, Flash file will contain an animated version of Help for the software that I am creating. Is it possible to insert Flash in Developer 6i. Please do the needful for getting a sample or study materials related to that.

SHARE
Answered By 30 points N/A #189362

How to insert Flash in Developer 6i

qa-featured

 

Hi there,
 
First of all, make sure you have Flash installed, then open your Developer 6i.
 
Start with creating an OCX item on your canvas.
 
When created, right click on the OCX item, select Insert Object and  choose Shockwave Flash Object.
 
Click the menu Program, choose Import OLE Library Interfaces, select ShockwaveFlash and select both the Method Package(s) and the Event Package(s).
 
After you're done, add the  code to your trigger:
 
DECLARE
  var     oleobj;
BEGIN
  var:=:item('your_block.your_activex_item').interface;
  ShockwaveFlash_IShockwa_0.MOVIE(var,'path to the swf file');
END;

Related Questions