SunQuest
 
           Multimedia
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsWeb DesignMultimedia

Closed Thread
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
SlickEdit: Code in over 40 languages across 7 platforms. SlickEdit’s unmatched power, speed, and flexibility allows even the most accomplished developers to write better code faster. Download a free trial today!
  #1  
Old January 28th, 2004, 07:59 AM
Inger Inger is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jan 2004
Posts: 1 Inger User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Unhappy A .swf file inside an ASP.Net application

Hi,
I'm trying to come up with a way to include a .swf file in my ASP.Net application.

I have a menu bar on the left, wich is made in ASP.Net, and on the right should my .swf files be loaded in.

Depending on wich option in the menu you press different .swf files should get loaded in.

I also need to pass different variables between my ASP.net page and my .swf files...

Does anyone know a smart way on how to do this?

//Inger

Reply With Quote
  #2  
Old December 7th, 2004, 10:58 PM
santoshlera santoshlera is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Dec 2004
Posts: 2 santoshlera User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Hi Even I am trying for the samething!

Quote:
Originally Posted by Inger
Hi,
I'm trying to come up with a way to include a .swf file in my ASP.Net application.

I have a menu bar on the left, wich is made in ASP.Net, and on the right should my .swf files be loaded in.

Depending on wich option in the menu you press different .swf files should get loaded in.

I also need to pass different variables between my ASP.net page and my .swf files...

Does anyone know a smart way on how to do this?

//Inger

Reply With Quote
  #3  
Old January 7th, 2005, 06:19 AM
Phoenix's Avatar
Phoenix Phoenix is offline
Web-Standards Evangelist
ASP Free Intermediate (1500 - 1999 posts)
 
Join Date: Nov 2003
Posts: 1,522 Phoenix User rank is Corporal (100 - 500 Reputation Level)Phoenix User rank is Corporal (100 - 500 Reputation Level)Phoenix User rank is Corporal (100 - 500 Reputation Level)Phoenix User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 4 Days 23 h 48 m 4 sec
Reputation Power: 8
I have no idea what you are talking about

Do you want an SWF to be the menu?

Do you want an SWF to contain a menu generated by ASP.Net?

Do you want the menu to load an SWF?

Reply With Quote
  #4  
Old February 1st, 2005, 01:50 PM
justme75025 justme75025 is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2005
Posts: 1 justme75025 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 m 9 sec
Reputation Power: 0
What are you using to build your flash objects? You can typically export your flash to an html file and then cut and paste the code directly into your aspx file. You can place the <object>.........</object> tags in an aspx file and it will work. Only include the information within the tags and you should be fine.

Reply With Quote
  #5  
Old July 29th, 2005, 04:56 PM
JovanDi JovanDi is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jul 2005
Posts: 1 JovanDi User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 12 m 59 sec
Reputation Power: 0
SWF Files in ASP.NET

<form id="Form1" method="post" runat="server">
<!-- SWF in ASP.NET -->
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
WIDTH="30" HEIGHT="56" id="myMovieName" VIEWASTEXT>
<PARAM NAME=movie VALUE="swf_files/admin.swf">
<PARAM NAME=quality VALUE=autohigh>
<PARAM NAME=bgcolor VALUE=black>
<PARAM NAME=”menu” VALUE=”false” />
<PARAM NAME=FlashVars VALUE=”init=yes&check=true”>
<EMBED src="swf_files/admin.swf" FlashVars=”init=yes&check=true” quality=high bgcolor=#FFFFFF WIDTH="30" HEIGHT="56"
NAME="myMovieName" TYPE="application/x-shockwave-flash"
PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
</form>


or full

<form id="Form1" method="post" runat="server">
<!-- from ASP.net -a -->
<OBJECT id="myMovieName" codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"
height="56" width="30" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" VIEWASTEXT>
<PARAM NAME="_cx" VALUE="794">
<PARAM NAME="_cy" VALUE="1482">
<PARAM NAME="FlashVars" VALUE="">
<PARAM NAME="Movie" VALUE="swf_files/admin.swf">
<PARAM NAME="Src" VALUE="swf_files/admin.swf">
<PARAM NAME="WMode" VALUE="Window">
<PARAM NAME="Play" VALUE="0">
<PARAM NAME="Loop" VALUE="-1">
<PARAM NAME="Quality" VALUE="AutoHigh">
<PARAM NAME="SAlign" VALUE="">
<PARAM NAME="Menu" VALUE="-1">
<PARAM NAME="Base" VALUE="">
<PARAM NAME="AllowScriptAccess" VALUE="always">
<PARAM NAME="Scale" VALUE="ShowAll">
<PARAM NAME="DeviceFont" VALUE="0">
<PARAM NAME="EmbedMovie" VALUE="0">
<PARAM NAME="BGColor" VALUE="">
<PARAM NAME="SWRemote" VALUE="">
<PARAM NAME="MovieData" VALUE="">
<PARAM NAME="SeamlessTabbing" VALUE="1">
<EMBED src="swf_files/admin.swf" FlashVars="”init=yes&check=true”" quality="high" bgcolor="#FFFFFF"
WIDTH="30" HEIGHT="56" NAME="myMovieName" TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">
</EMBED>
</OBJECT>
</form>

Reply With Quote
  #6  
Old January 11th, 2007, 11:47 PM
vinadas vinadas is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jan 2007
Posts: 1 vinadas User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 19 m 50 sec
Reputation Power: 0
Thumbs down Problem using object tag

Hi,
Usage of object tag leads to a problem in dotnet 2003
I requires that the object tag must be activated with a single click and only then the buttons created with flash gets activated
Thus it requires double click each time.
Can U help plz.
Thanks in advance.

Reply With Quote
  #7  
Old January 22nd, 2007, 09:15 AM
Eric Heng Eric Heng is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Jan 2007
Posts: 1 Eric Heng User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 4 m 47 sec
Reputation Power: 0
Error Message: Element "embed" is not supported.

My application (on Visual Studio 2005) appear this message, anyone have any idea?

Reply With Quote
  #8  
Old January 23rd, 2007, 08:50 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
Click here for more information.
 
Join Date: Sep 2004
Location: Israel
Posts: 26,621 Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)  Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 1 Week 4 Days 13 h 47 m 29 sec
Reputation Power: 1441
Quote:
Originally Posted by Eric Heng
My application (on Visual Studio 2005) appear this message, anyone have any idea?
that's not error, your code should compile just fine.
it only let you know that you're using old HTML that
may not be supported anymore by modern browsers.

Reply With Quote
  #9  
Old August 2nd, 2007, 01:06 PM
Narayan Narayan is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2007
Location: Croatia
Posts: 1 Narayan User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 8 m 38 sec
Reputation Power: 0
Hi,
I'm trying to come up with a way to include a .swf file in my ASP.Net application.

I have a menu bar on the left, wich is made in ASP.Net, and on the right should my .swf files be loaded in.

Depending on wich option in the menu you press different .swf files should get loaded in.

I also need to pass different variables between my ASP.net page and my .swf files...

Does anyone know a smart way on how to do this?

Narayan

Reply With Quote
  #10  
Old August 3rd, 2007, 01:46 PM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
Click here for more information.
 
Join Date: Sep 2004
Location: Israel
Posts: 26,621 Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)  Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 1 Week 4 Days 13 h 47 m 29 sec
Reputation Power: 1441
the code posted in post #5 is the smartest way of doing this.
if you have any specific problem let us know, instead of acting
like parrot and quoting the same words of other person.

Reply With Quote
  #11  
Old August 13th, 2007, 03:07 PM
sandeep_bonds sandeep_bonds is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2007
Posts: 1 sandeep_bonds User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 30 m 6 sec
Reputation Power: 0
hi everyone i m a new user and need your hlep

i want to make a web site in ASP.net with C#
i have a flash movie and a flash file , i want to add this on my
first page which just play movie or show flash file.

pls anyone give me the complet code or solve this problem.
thaks

Reply With Quote
  #12  
Old August 14th, 2007, 02:46 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
Click here for more information.
 
Join Date: Sep 2004
Location: Israel
Posts: 26,621 Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 7th Grade (Above 100000 Reputation Level)  Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1Folding Points: 325693 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 1 Week 4 Days 13 h 47 m 29 sec
Reputation Power: 1441
ok, that's enough.
no point keeping this thread open to the same question over and over again.
full code can be found at post #5

--thread closed.

Reply With Quote
Closed Thread

Viewing: ASP Free ForumsWeb DesignMultimedia > A .swf file inside an ASP.Net application


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support |