Active Server Flash Standard

Cost
$ 499.00
Version
1.50
Download

Sample Source Code

Do you need some server side data visualization component in Macromedia Flash(swf) format? Do you want your web visitors to create a special, interactive, custom Flash from your Microsoft ASP/PHP scripts? Or use Flash custom charts to show your own professional data from database? Try Active Server Flash, which provides a stage by the size you specified, and you can draw any shape by ASP/PHP scripts with your complex data through a series of COM-based interface.

ASF is a powerful Macromedia Flash(swf) component to creating server side professionally looking Flash(swf) from your Active Server Pages (VBScript and JScript), your PHP scripts. Even you can use ASF build your full flash sites.

Key Features:

Fast, Flexible, Easy to Use flash software, ASF is a Flash charting and graphing component for web servers and for embedding in applications.
By supporting UTF8 (Unicode) text strings, ASF can draw flash movie stage with characters from multiple languages.
Supporting save to file or response flash binarydata from server to browser directly.
Browser friendly: Server side dll, no Java or ActiveX controls are required(except Macromedia flash player).
Providing you flexibility to draw the movie stage as will.
Full custom data visualization.

Sample ASP Source Code: Add Text Animation on Flash Movie

<% @LANGUAGE="VBSCRIPT" %>
<%
response.Buffer = true
response.CacheControl = "no-cache"

set Movie = Server.CreateObject("eMarkASF.Movie")
   Movie.SetSize 600, 229
   Movie.SetBackgroundColorEx "Gold"

set objFileName = Server.CreateObject("eMarkASF.FlashObject")
   objFileName.CreateText Request.ServerVariables("Script_Name"), 0,0
   objFileName.Translate 20,10
   Movie.AddObject objFileName
   objFileName.Free
   
set color = Server.CreateObject("eMarkASF.Color")
   color.ColorString = "Red"
   
set obj = Server.CreateObject("eMarkASF.FlashObject")

   obj.CreateText "?? Hello! ", 0, 229, 30, "arial black"
   obj.SolidFillColor = color
   'obj.Scale 50,50
   
   Movie.AddObject obj, 0

' Make the text animation
for i=1 to 80
   Movie.GotoFrame i
   Movie.RemoveObject obj
   color.Alpha = 250 - 3*i
   obj.SolidFillColor = color
   obj.Scale i+100,i+100
   obj.Translate i*4, 229 - i*4
   Movie.AddObject obj
next

   obj.CreateText "?? Hello! ", 0, -30, 30, "arial black"
   color.ColorString = "#007700"
   obj.SolidFillColor = color
   movie.GotoFrame 0
   Movie.AddObject obj

' Make another text animation
for i=1 to 80
   Movie.GotoFrame i
   Movie.RemoveObject obj
   color.Alpha = 250 - 3*i
   obj.SolidFillColor = color
   obj.Scale i+100, i+100
   obj.Translate i*4, i*4 - 30
   Movie.AddObject obj
next
   
   'movie.SaveToFile Server.MapPath(".") & "\CreateText.swf"
   'response.End
   
   response.contentType = "application/x-shockwave-flash"
   response.binarywrite Movie.Content
   
   obj.Free
   Movie.Free
%>

Please visit http://www.emarksoft.com/ for more examples.

You might also like...

Comments

Contribute

Why not write for us? Or you could submit an event or a user group in your area. Alternatively just tell us what you think!

Our tools

We've got automatic conversion tools to convert C# to VB.NET, VB.NET to C#. Also you can compress javascript and compress css and generate sql connection strings.

“There are only two kinds of languages: the ones people complain about and the ones nobody uses” - Bjarne Stroustrup