473,321 Members | 1,778 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,321 software developers and data experts.

On Adobe's Flash & Flex in ASP.NET

I have been asked to create some simple animation using Adobe Flash player
in ASP.NET(C#) web application.

While I am fairly well versed with ASP.NET C#, I absolutely have NO IDEA
about how to say "Hello World" in a Flash enabled web page rendered via
ASP.NET.

Can any one let me get started?

---
By the way, there is a NEWS today about Adobe Flex 2, which I can not
comprehend. There are getting started articles for PHP developers on Adobe's
website but nothing for ASP.NET developers.

http://news.com.com/Adobe+to+open-so...3-6179305.html

It will be nice to hear something from experienced people. Microsoft folks
too are urged to speak something. How Microsfott's Silverlight fits into all
this? Can a person who rely solel on VWD/C# Express count on Silverline?

Thanks in advance !

-- a VWD(C#) Express explorer

Apr 27 '07 #1
5 5914
You have to consider Flash an embedded control in the browser. It has a
completely separate programming model which is radically different from
ASP.NET. ASP.NET ultimately is only going to send HTML to be rendered in
the browser (it's going to be complex, but at its core, that's what it's
doing).

Flash, on the other hand, is going to actually execute within the
browser, and you have have it interact with the page it is hosted in, as
well as the server it came from (I'm not sure what the security restrictions
on flash are, but this would be reasonable to assume, I could be wrong
here).

As for Flex, my understanding of it is that it is Adobe's response to
WPF, meant more for desktop applications, while Silverlight is Microsoft's
attempt to break into the Flash market.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com

"ASP.NET explorer" <explorer@aspdotnetJunglewrote in message
news:OX**************@TK2MSFTNGP03.phx.gbl...
>I have been asked to create some simple animation using Adobe Flash player
in ASP.NET(C#) web application.

While I am fairly well versed with ASP.NET C#, I absolutely have NO IDEA
about how to say "Hello World" in a Flash enabled web page rendered via
ASP.NET.

Can any one let me get started?

---
By the way, there is a NEWS today about Adobe Flex 2, which I can not
comprehend. There are getting started articles for PHP developers on
Adobe's website but nothing for ASP.NET developers.

http://news.com.com/Adobe+to+open-so...3-6179305.html

It will be nice to hear something from experienced people. Microsoft folks
too are urged to speak something. How Microsfott's Silverlight fits into
all this? Can a person who rely solel on VWD/C# Express count on
Silverline?

Thanks in advance !

-- a VWD(C#) Express explorer

Apr 27 '07 #2
Nicholas Paldino [.NET/C# MVP] wrote:
You have to consider Flash an embedded control in the browser. It has a
completely separate programming model which is radically different from
ASP.NET. ASP.NET ultimately is only going to send HTML to be rendered in
the browser (it's going to be complex, but at its core, that's what it's
doing).

Flash, on the other hand, is going to actually execute within the
browser, and you have have it interact with the page it is hosted in, as
well as the server it came from (I'm not sure what the security restrictions
on flash are, but this would be reasonable to assume, I could be wrong
here).

As for Flex, my understanding of it is that it is Adobe's response to
WPF, meant more for desktop applications, while Silverlight is Microsoft's
attempt to break into the Flash market.
Not true. Flex, has been around for a few years now, is Flash for the
server. It allows you to create Flash UIs using XML declarations.
Facilitates remote calls for your Flash client, etc.

More info here;
http://www.adobe.com/products/flex/p...info/overview/

OpenLazlo is an alternative to Flex:
http://www.openlaszlo.org/
Apr 27 '07 #3
flash is browser plugin and plays a flash file stored on your website.
the flash is hosted just like an image. instead of an image tag, you use
an <objecttag. its just html, so nothing special is required to host a
flash file in asp.net.

To build a flash file (swf), you currently need a tool kit from adobe.
this tools kit will be available later this year as open source, but
right now you need to buy one from adobe.

flash file are a series of vector graphics, canvases, behaviors and a
timeline that allows an animated graphic to be displayed. there are
built in events and action such that click on an location can cause an
action to happen.

the flash file can also contain code (they have a version of javascript)
that can also be triggered by events. if you write code, the code can
make webservice (flash remote) calls. flash also supports sending events
to the client.

the flash has a server framework to receive and send events to the
client. this is currently java based.

flash also can call client javascript, or expose methods to client
javascript.

with asp.net you can host a flash file, use its client javascript
support, and host webservices it calls.
Silverline is microsofts response to flash. Silverline is a plugin just
like flash. Silverline files are xaml (xml) based so they can be built
without buying a tool. though making more than a trival hello world not
sure how far you'd get. As the flashtool kit will be open source, MS
will probably release an Express Silverline toolkit. Silverline uses
client javascript for a progaming language. it also supports loadloading
and hosting a .net component, but this requires both Silverline and .net
be installed. also increases load time.

-- bruce (sqlwork.com)


ASP.NET explorer wrote:
I have been asked to create some simple animation using Adobe Flash player
in ASP.NET(C#) web application.

While I am fairly well versed with ASP.NET C#, I absolutely have NO IDEA
about how to say "Hello World" in a Flash enabled web page rendered via
ASP.NET.

Can any one let me get started?

---
By the way, there is a NEWS today about Adobe Flex 2, which I can not
comprehend. There are getting started articles for PHP developers on Adobe's
website but nothing for ASP.NET developers.

http://news.com.com/Adobe+to+open-so...3-6179305.html

It will be nice to hear something from experienced people. Microsoft folks
too are urged to speak something. How Microsfott's Silverlight fits into all
this? Can a person who rely solel on VWD/C# Express count on Silverline?

Thanks in advance !

-- a VWD(C#) Express explorer
Apr 27 '07 #4

Several options..

1. Flash. The is the traditional way to develop Flash movies and
apps. I wouldn't suggest it for applications unless you're doing
something very visual or artsy--there are better options now.

2. Flex. This is the newer way to develop Flash applications. Based
on XML and ActionScript 3 (ECMA4). It's two new languages but
hopefully should be easy enough to learn. There is a free SDK (which
is what the press release is referring to) so you can develop Flex
apps using any IDE without paying any fees. However, FlexBuilder
makes it a lot easier so I'd highly suggest using FlexBuilder. 30 day
trial available. For communication it supports web services and
others (see Fluorine).

3. NeoSwff. There's a separate IDE and compiler from a company
called GlobFX which lets you create Flash applications using C# and
WinForms framework. It compiles down to SWF and uses their
implementation of the .NET framework. I haven't used it, but the lead
developer is very smart and I've heard lots of very good things.
Obviously this would be the easist for you to learn.

4. OpenLaszlo. Produces SWFs from XML and ActionScript. Uses older
version of SWF and ActionScript so I personally would not recommend
it.
Silverlight is a nice option in the future but if you're building
something for widespread use (outside a single company) then it'll be
years before market penetration is high enough to be useful.

Flash IDE: http://www.adobe.com/products/flash/

FlexBuilder: http://www.adobe.com/products/flex/flexbuilder/

Fluorine: http://fluorine.thesilentgroup.com/fluorine/

NeoSwff: http://www.globfx.com/

OpenLaszlo: http://www.openlaszlo.org/

For developing in Flex I would suggest a new O'Reilly book

Programming Flex 2
http://www.amazon.com/Programming-Fl...946813-0563331
HTH,

Sam

------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.
On Fri, 27 Apr 2007 11:30:58 -0500, "ASP.NET explorer"
<explorer@aspdotnetJunglewrote:
>I have been asked to create some simple animation using Adobe Flash player
in ASP.NET(C#) web application.

While I am fairly well versed with ASP.NET C#, I absolutely have NO IDEA
about how to say "Hello World" in a Flash enabled web page rendered via
ASP.NET.

Can any one let me get started?

---
By the way, there is a NEWS today about Adobe Flex 2, which I can not
comprehend. There are getting started articles for PHP developers on Adobe's
website but nothing for ASP.NET developers.

http://news.com.com/Adobe+to+open-so...3-6179305.html

It will be nice to hear something from experienced people. Microsoft folks
too are urged to speak something. How Microsfott's Silverlight fits into all
this? Can a person who rely solel on VWD/C# Express count on Silverline?

Thanks in advance !

-- a VWD(C#) Express explorer

Apr 27 '07 #5
Your reply was quite enlightening, reducing my bewilderment.

Thank you to you all !!
"Samuel R. Neff" <sa********@nomail.comwrote in message
news:r6********************************@4ax.com...
>
Several options..

1. Flash. The is the traditional way to develop Flash movies and
apps. I wouldn't suggest it for applications unless you're doing
something very visual or artsy--there are better options now.

2. Flex. This is the newer way to develop Flash applications. Based
on XML and ActionScript 3 (ECMA4). It's two new languages but
hopefully should be easy enough to learn. There is a free SDK (which
is what the press release is referring to) so you can develop Flex
apps using any IDE without paying any fees. However, FlexBuilder
makes it a lot easier so I'd highly suggest using FlexBuilder. 30 day
trial available. For communication it supports web services and
others (see Fluorine).

3. NeoSwff. There's a separate IDE and compiler from a company
called GlobFX which lets you create Flash applications using C# and
WinForms framework. It compiles down to SWF and uses their
implementation of the .NET framework. I haven't used it, but the lead
developer is very smart and I've heard lots of very good things.
Obviously this would be the easist for you to learn.

4. OpenLaszlo. Produces SWFs from XML and ActionScript. Uses older
version of SWF and ActionScript so I personally would not recommend
it.
Silverlight is a nice option in the future but if you're building
something for widespread use (outside a single company) then it'll be
years before market penetration is high enough to be useful.

Flash IDE: http://www.adobe.com/products/flash/

FlexBuilder: http://www.adobe.com/products/flex/flexbuilder/

Fluorine: http://fluorine.thesilentgroup.com/fluorine/

NeoSwff: http://www.globfx.com/

OpenLaszlo: http://www.openlaszlo.org/

For developing in Flex I would suggest a new O'Reilly book

Programming Flex 2
http://www.amazon.com/Programming-Fl...946813-0563331
HTH,

Sam

------------------------------------------------------------
We're hiring! B-Line Medical is seeking .NET
Developers for exciting positions in medical product
development in MD/DC. Work with a variety of technologies
in a relaxed team environment. See ads on Dice.com.
On Fri, 27 Apr 2007 11:30:58 -0500, "ASP.NET explorer"
<explorer@aspdotnetJunglewrote:
>>I have been asked to create some simple animation using Adobe Flash player
in ASP.NET(C#) web application.

While I am fairly well versed with ASP.NET C#, I absolutely have NO IDEA
about how to say "Hello World" in a Flash enabled web page rendered via
ASP.NET.

Can any one let me get started?

---
By the way, there is a NEWS today about Adobe Flex 2, which I can not
comprehend. There are getting started articles for PHP developers on
Adobe's
website but nothing for ASP.NET developers.

http://news.com.com/Adobe+to+open-so...3-6179305.html

It will be nice to hear something from experienced people. Microsoft folks
too are urged to speak something. How Microsfott's Silverlight fits into
all
this? Can a person who rely solel on VWD/C# Express count on Silverline?

Thanks in advance !

-- a VWD(C#) Express explorer


May 4 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Sarah Akers | last post by:
GgF ----gL5cJ72EqiGIQ0SK65Rz Content-Type: text/html; Content-Transfer-Encoding: quoted-printable <html> <head> <style type=3D"text/css">.eyebrow { FONT-WEIGHT: bold; FONT-SIZE: 10px; TE=
8
by: pavel.orehov | last post by:
Hi, I am using flex and bizon to write HTTP parser. I am passing well flex and bison tools but can't compile their output. ================= Flex file (http_parser.lpp) ============== %{...
8
by: Ben Bartsch | last post by:
Looking for opinions on the use of Flash with ASP.NET. Has anyone here seen or conducted any implementations of Flash that are actually useful or otherwise complement ASP.NET?
6
by: Andy G | last post by:
I have a client that is really pushing me to start using Flash MX Professional to replace VS.NET. Main arguement is that it looks better and flows nicer than visual studio developed applcations...
10
by: Jules Winfield | last post by:
Guys, I've been designing applications for the financial services industry using MSFT technologies for many years (Win32 API, MFC, and now .NET WinForms). All applications are Internet-based,...
1
by: abbasnaqvi | last post by:
Hi All, I am developing Employee Management system in Adobe Flex and I am coding a web service to get data from the database and return it to Adobe Flex...
0
by: dolittle | last post by:
Hi, I'm embedding a last.fm flash widget. I want to be able to remove it from the page using javascript. I've tried to delete the html element that contains the code but it keeps playing in...
0
by: robinhavoc | last post by:
Hello, Thanks a lot for taking time for reading through my query. What I want is fla version of the example at http://blog.tsclausing.com/post/49. You can download the source from...
0
by: susheela s | last post by:
Hi. I followed the link which is given below to develop an air application .The procedure i followed is there in this link...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
0
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
1
by: PapaRatzi | last post by:
Hello, I am teaching myself MS Access forms design and Visual Basic. I've created a table to capture a list of Top 30 singles and forms to capture new entries. The final step is a form (unbound)...
1
by: Defcon1945 | last post by:
I'm trying to learn Python using Pycharm but import shutil doesn't work
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.