473,748 Members | 9,913 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 5948
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.co m

"ASP.NET explorer" <explorer@aspdo tnetJunglewrote in message
news:OX******** ******@TK2MSFTN GP03.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@aspdo tnetJunglewrote :
>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********@nom ail.comwrote in message
news:r6******** *************** *********@4ax.c om...
>
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@aspdo tnetJunglewrote :
>>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
1937
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
16846
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) ============== %{ #include <iostream> #include "http_parser.tab.hpp"
8
4058
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
1915
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 (this client is a designer not a programmer). I believe that Flash is a 'Tool' not a 'Solution'. My 'Solution' is an ASP.NET application but I would like to use Flash as a 'Tool'. I am having very hard time seeing any documentation on the...
10
6724
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, with a "thick client" which makes calls to my grid of servers via a socket or remoting connection. Customers are pleased with my work but it seems that over the past twelve months or so, those same customers have expressed a strong demand to...
1
2961
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 application but I can find a better way to handle my data in Adobe Flex application. Is there any sample project to do that, then it will be very helpfull. Or if anyone can suggest some technology to receive and handle...
0
5478
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 IE. In FF it stops playing but I can't tell if it is removed or not. Can I do it in javascript or maybe I need a FLASH script to do it?
0
1626
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 http://blog.tsclausing.com/flex3/post_49/srcview/index.html but it is a Flex application and I want it to work with Flash CS3 professional. I tried a lot to make it work using the Action Script file but was not able to do so. If any one of you who have...
0
1666
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 "http://help.adobe.com/en_US/AIR/1.5/devappsflex/WS5b3ccc516d4fbf351e63e3d118666ade46-7fd8.html" I could able to generate swf file by compliling and i also tested the application. But while packageing air installation file i am not able to do. Here first i need to create a certificaticate i did that. Then i entered...
0
8987
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9534
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9316
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9241
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8239
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6793
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 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 a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6073
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3303
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2777
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.