ASP + FLASH = possible???

  • Thread starter Thread starter Vinnie
  • Start date Start date
V

Vinnie

i'm learning asp.net 2.0 and when i want to import a flash movieclip,
what i do is this:

I) First:
a) create the movieclip that i need with Flash;
b) publish the Flash movieclip;

II) Then with ASP.NET
c) open the website in design view with VWD (That i was working on
before creating the MovieClip with Flash);
d) copy and past the HTML code contained in the Flash published
MovieClip in one of the DIV created in
VWD.

I'm not quite sure that this is the right procedure, for i get tons of
errors.

Can anyone help me to understand how to better integrate Flash
MovieClip in ASP?

thanks,
Vinnie
 
Hello Vinnie,
I have many applications like this. Just copy and paste the flash object
part of your code into the asp.net application.

Michael
 
Due to Internet Explorer's non-user-friendly handling of activex
controls (due to Eolas patent) you should not embed the object tag
directly within the aspx page. Instead use an external JS file and
make a JS call to it to embed the SWF.

http://www.adobe.com/devnet/activecontent/

And if you still get errors then when you post back please be more
specific about exactly what errors you get and where you get them
(compile time or runtime? in only IE or in IE/Firefox/Safari/Opera
too?)

HTH,

Sam
 
Hello Vinnie,
I have many applications like this. Just copy and paste the flash object
part of your code into the asp.net application.

Michael

Hi Michael,
thanks a lot for your help.
When you say "Just copy and paste the flash object..." you mean the
part of code contained between what tags?

Thanks
Vinnie
 
Yes.

Vinnie said:
Hi Michael,
thanks a lot for your help.
When you say "Just copy and paste the flash object..." you mean the
part of code contained between what tags?

Thanks
Vinnie
 
Back
Top