Programming Tools
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
 
Go Back   Dev Articles Community ForumsProgrammingProgramming Tools

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Display Modes
 
Unread Dev Articles Community Forums Sponsor:
  #1  
Old February 25th, 2003, 05:50 PM
mytch mytch is offline
Dev Articles Novice (500 - 999 posts)
 
Join Date: Apr 2002
Location: Sydney, Australia
Posts: 589 mytch User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
Article Discussion: Will Macromedia Soon Become Micromedia?

Will Macromedia Soon Become Micromedia? If you have any questions or comments about this article then please post them here.

You can read the article here .

Reply With Quote
  #2  
Old February 25th, 2003, 07:03 PM
dgibson dgibson is offline
Contributing User
Dev Articles Newbie (0 - 499 posts)
 
Join Date: May 2002
Location: Urbana, MD, USA
Posts: 66 dgibson User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 7
that would be nice for all those flash users , but probably spell the doom of Cold Fusion, for all of us CF developers... :-(

Reply With Quote
  #3  
Old February 26th, 2003, 03:52 AM
HarryF HarryF is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Posts: 17 HarryF User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Quote:
Adobe positions itself as offering "graphic design, imaging and dynamic media authoring tools [that] enable customers to create, manage and deliver visually rich, reliable content." Rich content? Yes. Rich applications? No. Acrobat is not an application framework, but rather a document standard. Flash, on the other hand, is a front- and back-end standard.


So what about SVG? The standard that Adobe helped develop and have done the most to push. The article writes off Adobe as being a company unsuited to rich applications, while ignoring the fact that it effectively already has a competing solution. For a comparison of Flash and SVG (a little old) see http://www.carto.net/papers/svg/com...flash_svg.html. If Adobe buys Macromedia, we might see Flash and SVG merge into something useful; an open standard for "fatter" clients which would be open for "rendering" with server side languages like JSP, PHP, Perl and ASP(.NET).

Outside of Coldfusion, PHP is has had a flash rendering extension for a while now. In practical terms it's unwieldy though - it's based on an outstanding open source project but ultimately the "raw material" of flash in difficult to manipulate. By contrast, as these PHP classes demonstrate it's very easy to generate SVG, it being defined by XML.

In other words, if Adobe buys Macromedia, we'd see these kind of technologies become widespread and open, making them useful to a wide range of developers. Microsoft could happily support them in ASP.NET just like everyone else.

Personally my wish would be that IBM buys Macromedia. The article mistakenly assumes IBM would wish to sell Flash as a product - my guess is they'd just takeover then leave Macromedia to continue doing what they already do, making concession to allow Flash to be something that plays well with J2EE (and therefore websphere). IBM, we should remember, was also a contributor to defining the SVG standard. Let's also not forget that IBM has been in pursuit of a decent client side web technology, having developed Sash, basically a "runtime client" for technologies like Javascript and DHTML which actually works (as opposed to those "standards compatible" browsers out there...). The article is right that IBM is no longer really into selling software - in fact it would rather donate software, such as Eclipse which help promote the fields it sells services in. If IBM buys Macromedia, my guess is they'd leave them to continue developing their tools while merging flash itself with SVG and making a truly open standard.

But going back to the article, I see no convincing argument for why Microsoft should buy Macromedia.

Quote:
Flash will skyrocket with Microsoft at the helm. Of course, Microsoft will benefit. Macromedia will benefit. But the growing universe of Flash users and developers will benefit most.


Flash is already on practically every browser. It doesn't need any more promoting. What limits it today is the most popular server side languages, (such as PHP, the most popular) effectively can't render anything useful with it on the fly, hence the opportunity is missed to use it to build the next generation of web based applications.

What Flash needs is to become an open standard - are we really saying this will happen if Microsoft buy Macromedia?

Reply With Quote
  #4  
Old February 26th, 2003, 05:35 AM
Ben Rowe
Guest
Dev Articles Newbie (0 - 499 posts)
 
Posts: n/a  
Time spent in forums:
Reputation Power:
Quote:
What limits it today is the most popular server side languages, (such as PHP, the most popular) effectively can't render anything useful with it on the fly, hence the opportunity is missed to use it to build the next generation of web based applications.


Thats not true, Its quite easy to make dynamic flash with any server side language. Once you know flash's actionscript, it is very easy.

Reply With Quote
  #5  
Old February 26th, 2003, 06:22 AM
stumpy's Avatar
stumpy stumpy is offline
May contain nuts.
Dev Articles Regular (2000 - 2499 posts)
 
Join Date: Aug 2002
Location: Sydney, AU
Posts: 2,058 stumpy User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 5 h 8 m 57 sec
Reputation Power: 9
Send a message via ICQ to stumpy Send a message via MSN to stumpy
Don't you still need flash to run the animation client side tho Ben?

Reply With Quote
  #6  
Old February 26th, 2003, 09:10 AM
HarryF HarryF is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Posts: 17 HarryF User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
The problem is the movie itself. Using ActionScript you can integrate a Flash movie with a PHP script (or otherwise; even a web service) but for me the real potential of these type of technologies is being able to render the entire movie in PHP - no need for editing flash.

Right now it's "do able" with the Ming extension ( there's some good examples here: http://www.neuralust.com/~mingdocs/ ) but it's hard to build some kind of useful class library ( along the lines of Java's Swing/AWT or PHP-GTK ) that allows you to construct user interfaces with PHP.

SVG is practically there; the players need perhaps one more generation then it should be possible to build SVG user interfaces on the fly with PHP, applying "call backs" to another PHP script with XML-RPC / SOAP. SVG is also interesting because it allows you to use JavaScript (well ecmascript in fact) where Flash uses actionscript.

What I'm hoping for is something where you can generate a complete interface with some code like;

PHP Code:
// Start an SVG Window
$window=new SVGWindow();

// Create a callback (this refers to some javascript)
$callback=new SVGCallback('xmlrpcRequest','login');

// Create an SVGForm
$form=new SVGForm($callback);

// Add some fields
$textInput=new SVGTextInput('username');
$form->add($textInput);
$textInput=new SVGTextInput('password');
$form->add($textInput);
$button=new SVGButton('Login');
$form->add($button);

// Add the form
$window->add($form);

// Display the form
header ('Content-type: image/svg-xml');
echo ( 
$window->show() ); 


There's a really good example here plus and better explained example of using HTTP requests in SVG here

The problem described in the latter with HTTP headers I haven't checked out but once that problem is solved, it shouldn't be too hard to build web services clients for SVG, porting projects like this Javascript XML-RPC client.

Last edited by HarryF : February 26th, 2003 at 11:12 AM.

Reply With Quote
  #7  
Old February 26th, 2003, 12:49 PM
XE|Sebastian B. XE|Sebastian B. is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Aug 2002
Posts: 7 XE|Sebastian B. User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
[NOTE]I havent read any of the other replies so sorry if this is a bit off topic. Its targeted towards the article[ /NOTE



Well, yes Flash is a macromedia product, and sure Microsoft can probably do a lot more with it. But how about the other Macromedia products? Dreamweaver? FireWorks? I doubt these programs will be very successful in the hands of Microsoft. Actually i predict that Dreamweave production will probably be dropped if Microsoft aquires Macromedia. I mean MS has FrontPage, right? They probably wont see any reason to develop and support these 2 at the same time. I think the best would be if MS simply bought Flash, and left Macromedia to develop the rest of it's products.

Reply With Quote
  #8  
Old February 26th, 2003, 02:35 PM
skoon skoon is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Posts: 4 skoon User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Other Macromedia products

The last post made a good point about other Macromedia products suddenly becoming useless if bought by Microsoft.

Dreamweaver: Why would Microsoft continue to support JSP and PHP in Dreamweaver when they have their own server-side technology they are pushing, as well as a web editing application (Frontpage). If you remove the JSP, PHP, and CF editing features from Dreamweaver you're left with....Web Matrix basically.

JRun: One of the few entry-level priced servlet containers on the market and one of the better ones overall.

I could see Microsoft integrating Fireworks/Freehand into their product line if not into Visual Studio itself.

The big question I have is, why would Microsoft want Flash so badly? Why would they care? Other than the online game web sites, advertisers (who's Flash ads constantly annoy web users), and marketing people I don't see there being a big demand for Flash as a "Rich content" front end. I think if Microsoft was interested in a rich content system, they would have already made one.

Reply With Quote
  #9  
Old February 26th, 2003, 06:41 PM
pcole8787 pcole8787 is offline
Junior Member
Dev Articles Newbie (0 - 499 posts)
 
Join Date: Oct 2002
Posts: 3 pcole8787 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Ditto the last two threads .... Microsoft has no interest in open standards or server languages not based on their .NET centric view of the future. All the small developers out there would be left with using their existing applications (homesite or dreamweaver etc) long after these products disappear from the lexicon of development tools. Can you imagine building database driven sites with frontpage .... ugh .... no, well that makes more than two of us. Talk about removing any competition from the marketplace. And, don't forget your software update contract and all the other predatory schemes practiced by the king of cash ...
It may happen, and since MS has more pocket money than most develped countries, it probably will. But, the original vision of the internet will take one giant step in the wrong direction and more along the path that media and entertainment are now enjoying, one that Microsoft is a huge advocate of .... consolidation.

Reply With Quote
Reply

Viewing: Dev Articles Community ForumsProgrammingProgramming Tools > Article Discussion: Will Macromedia Soon Become Micromedia?


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 | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway
Stay green...Green IT