Zurück   Flashforum > Aktuelles > Nachrichten

Antwort
 
LinkBack Themen-Optionen Ansicht
Alt 15-01-2005, 19:30   #1 (permalink)
www.kruesch.de
 
Benutzerbild von flory
 
Registriert seit: Feb 2002
Beiträge: 1.057
"Avalon public preview" erschienen

Microsoft stellt eine "Preview" auf das neue Grafik-Subsystem für Windows namens "Avalon"
auch für nicht-MSDN Abonennten kostenlos zum Download bereit, darunter auch ein SDK (Software
Development Kit). Avalon erlaubt die Programmierung von eindrucksvollen Vektorgrafik-Animationen
und ist bei vielen als "Flash-Killer" gefürchtet, da Microsoft vor einiger Zeit u.a. "Creature House"
aufgekauft hat, die mit "Expression" ein Tool zur Erstellung von Vektor-Animationen entwickelt hatten.
Avalon beinhaltet auch XAML, das an SVG angelehnt ist und z.B. auch Databinding erlaubt.

Wen's interessiert, hier der Link:
http://www.microsoft.com/downloads/d...displaylang=en

Der Download ist mit 261 MB allerdings nichts für schmale Bandbreiten

Florian
__________________
www.planet-xaml.net
flory ist offline   Mit Zitat antworten
Alt 15-01-2005, 20:34   #2 (permalink)
Ach Im Ach ...
 
Benutzerbild von Kutta
 
Registriert seit: Feb 2004
Ort: Dortmund
Beiträge: 388
Dank dir für die Info.
Da bin ich mal gespannt.
Kutta ist offline   Mit Zitat antworten
Alt 15-01-2005, 21:20   #3 (permalink)
wolter.biz
 
Benutzerbild von wolter
 
Registriert seit: Jun 2001
Ort: Düsseldorf
Beiträge: 3.395
Mal sehen, ob dieses Thema mehr bewegt als SVG (was ja leider im interaktiven und animierten Bereich sehr spärlich eingesetzt wird). Ich bin sehr gespannt! Hat denn jemand schon mal versucht, damit auch genau diese animierten und interaktiven Dinge zu machen, die gerade Flash auszeichnen?

Gruß,

Sascha.
wolter ist offline   Mit Zitat antworten
Alt 15-01-2005, 21:28   #4 (permalink)
nerdig working
 
Benutzerbild von michael
 
Registriert seit: Jul 2001
Ort: Hamburg
Beiträge: 5.832
ich scheitere schon an der installation des SDK.
michael ist offline   Mit Zitat antworten
Alt 15-01-2005, 21:57   #5 (permalink)
Ach Im Ach ...
 
Benutzerbild von Kutta
 
Registriert seit: Feb 2004
Ort: Dortmund
Beiträge: 388
Bin auch gerade am intallieren.
Recht unkonfortabel.
Hoffe ich zieh mir da nicht Bills Spycam-Programm drauf .

Update:
Aah, wieder das großgedruckte nicht gelesen !
Ist nichts für Win2k.
Werds dann gleich mal mit Laptop probieren.

Geändert von Kutta (15-01-2005 um 22:05 Uhr)
Kutta ist offline   Mit Zitat antworten
Alt 15-01-2005, 22:23   #6 (permalink)
logout
 
Benutzerbild von JoshXP
 
Registriert seit: Aug 2003
Ort: Freiburg
Beiträge: 354
hmm hab kein sp2 und auch gar keine lust drauf

anbei noch eine abschnitt aus der readme da kann sich der ein oder andere schon den download sparen.

The "Avalon" CTP release continues Microsoft's efforts to make our software development process more transparent to customers. As such, the quality of this CTP build is pre-beta level. For example, some scenarios that used to work may not work on this build, performance may be inconsistent, and certain features are not present. The most notable features missing from this release are media and printing support. Both of these features are expected to be available in a future release. The other significant omission is security – the Secure Execution Environment (SEE) has not been implemented in this build.

The "Avalon" CTP release runs on Windows XP Service Pack 2 (SP2) and Windows Server 2003, and includes software development kit (SDK) documentation (reference pages, overviews, samples, and so on) and Microsoft Visual Studio® tools support (an editor with updated templates, IntelliSense® for code and markup, debug support, and so on). Please note that pressing F5 does not currently work for browser-hosted applications.
__________________
Die Welt ist nicht das was du siehst sonder das was du glaubst zu sehen.

Wird auch in dunkelen ecken das Kellertier genannt.
JoshXP ist offline   Mit Zitat antworten
Alt 16-01-2005, 09:35   #7 (permalink)
[Matthias K.] - Moderator
 
Benutzerbild von Madokan
 
Registriert seit: Jun 2001
Ort: Berlin/Germany - and the hole World !
Beiträge: 9.971
Yup Avalon schaut recht interessant aus - ob es ein Flash-Killer wird mal abwarten. Die ersten Beispiele auch ohne Installation von rund 261 MB Avalon findet Ihr hier (MSDN Januar 2004):

Avalon Artikel (Screenshots + Beispielcodes ist im MSDN Artikel enthalten):
http://msdn.microsoft.com/msdnmag/is...n/default.aspx

Beispielprojekt - Hello World

HelloWorld.msproj (Projekt)
PHP-Code:
<Project DefaultTargets="Build">
    <
PropertyGroup>
        <
Property Language="C#" />    
        <
Property DefaultClrNameSpace="IntroLonghorn" />
        <
Property TargetName="HelloWorld" />
    </
PropertyGroup>
    
    <!--
Imports the target which contains all the common targets-->
    <
Import Project="$(LAPI)\WindowsApplication.target" />
    
    <
ItemGroup>
        <!-- 
Aplication markup -->
        <
Item Type="ApplicationDefinition" Include="HelloWorldApp.xaml" />
        
        <!-- 
Compiled Xaml Files list -->
        <
Item Type="Pages" Include="HelloWorld.xaml"/>        
    </
ItemGroup>
</
Project
HelloWorld.xaml
PHP-Code:
<TextPanel xmlns="http://schemas.microsoft.com/2003/xaml"
        
Background="BlanchedAlmond" 
        
FontFamily="Comic sans MS" 
        
FontSize="36pt"
        
HorizontalAlignment="Center">
    
Helloworld!
</
TextPanel
HelloWorldApp.xaml
PHP-Code:
<NavigationApplication xmlns="http://schemas.microsoft.com/2003/xaml/"
    
StartupUri="Helloworld.xaml" /> 
HelloWorld.cs (C-Sharp)
PHP-Code:
using System;
using MSAvalon.Windows;
using MSAvalon.Windows.Controls;
using MSAvalon.Windows.Media;

class 
HelloWorldAppApplication
{
    [
STAThread]
    static 
void Main()
    {
        
HelloWorldApp app = new HelloWorldApp();
        
app.Run();
    }
    protected 
override void OnStartingUp(StartingUpCancelEventArgs args)
    {
        
Window win = new Window();
        
TextPanel tp = new TextPanel();

        
tp.Background Brushes.BlanchedAlmond;
        
tp.FontFamily "Comic sans MS";
        
tp.FontSize = new FontSize(72fFontSizeType.Point);
        
tp.HorizontalAlignment 
                        
MSAvalon.Windows.HorizontalAlignment.Center;
        
tp.TextRange.Text "Hello, world";
          
        
win.Children.Add(tp);
        
win.Show();
    }

Hinweis
Es wird das .NET Framework v1.2.30506 zur Ausführung benötigt!

Anmerkung
Wer eine C-Sharp (C#) Entwicklungsumgebung günstig abstauben möchte, ist mit dieser Alternative zum MS-Visual Studio .NET gut beraten.

Download - SharpDevelop:
http://www.icsharpcode.net/OpenSource/SD/Default.aspx

Weitere Avalon Beispiel-Codes hier:
http://download.microsoft.com/downlo...e35/Avalon.exe

Liebe Grüsse
Matze K.
Madokan ist offline   Mit Zitat antworten
Alt 16-01-2005, 10:56   #8 (permalink)
the journey continues...
 
Benutzerbild von Attila [derErschaffer]
 
Registriert seit: Oct 2001
Ort: Österreich, Wien, District 10
Beiträge: 2.392
also ich hab framework 1.1 bei mir irgendwann installiert

und das nächste wäre dann 2.0 nach dem link von microsoft...
http://msdn.microsoft.com/netframewo...s/default.aspx
aber wo gibts jetzt Framework v1.2.30506 ?

ist ja schon mal toll das man die beispiele nicht ohne framework sehen kann, das ist ja nicht standard...außer man ist NET entwickler *g*

wenn man sich die 261MB runterladet..ist da das richtige framework dabei ?
__________________
[*]Browser _ IE 7
[*]FlashPlayer 10
[*]Intel Core Duo 2,4GHZ, VISTA Ultimate 64bit
Attila [derErschaffer] ist offline   Mit Zitat antworten
Alt 16-01-2005, 15:57   #9 (permalink)
www.kruesch.de
 
Benutzerbild von flory
 
Registriert seit: Feb 2002
Beiträge: 1.057
Zitat:
Mal sehen, ob dieses Thema mehr bewegt als SVG
Das ist denke ich keine Frage, denn in ein paar Jahren (... die wirds wohl schon noch dauern)
ist Avalon in jedem Windows zu finden - so wie heute GDI. Im Gegensatz zu SVG, das es ja nie
zu ansehnlicher Verbreitung gebracht hat.

Es gibt aber Ansätze, XAML schon jetzt für das alte Grafiksystem (GDI+) und sogar Flash verfügbar
zu machen:
http://www.xamlon.com/software/xamlo...h/preview.aspx

Wobei Avalon wirklich einiges mehr umfasst als XAML, z.B. eine schöne 3D API etc.

Florian
__________________
www.planet-xaml.net

Geändert von flory (16-01-2005 um 16:58 Uhr)
flory ist offline   Mit Zitat antworten
Antwort

Lesezeichen

Themen-Optionen
Ansicht

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks sind an
Pingbacks sind an
Refbacks sind an



Alle Zeitangaben in WEZ +1. Es ist jetzt 13:52 Uhr.

Domains, Webhosting & Vserver von Host Europe
Unterstützt das Flashforum!
Adobe User Group


Copyright ©1999 – 2012 Marc Thiele