ASP网页编程之用ASP把持Flash
由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;ControllingFlashwithASPArecentprojecthasrequiredafewthingsthatIhaventdoneforawhile.OneisdealingwithFlash-
whichIhaventdonesinceshortlyafterthereleaseofFlash3.0.Theotheristoactuallyfiguresome
wayofgettingdynamiccontentinwithoutusingGenerator.Onesolutionwevecomeupwithinvolves
jumpingoutofaflashmovieintoanASPpage,thenbackagain.Ofcourseourdesignerswerealittle
miffed,sincetheyvebuilttheflashmoviewithallsortsofdifferenttransitionsfromplacetoplace,
andthissolutionwouldmeanstartingfromtheopeningsceneofthemovieevrytime.Italsostankfroma
usabilitystandpoint.
Notso,saidI
Toaccomplishtheeffectofjumpingbackinataspecificframe,wesimplyloadsomevariablesintothe
flashmovieandusethemtojumptotherightframe.Coolhuh?
Initiallywehadalittletrouble,sincedesignersdontneedtoknowanythingaboutASP,soconveying
informationbackandforthwasalittletricky,butwegotthere.Howitworksislikethis
IntheflashMovie,thefirstframehasapieceofactionscriptwhichsimplyreads
GoToAndPlay(scene);
Stop();
ThesyntaxisslightlydifferentinFlash4.0-thisisFlash5.0,butyougetmydrift
Now,whenjumpingbackfromtheASPpagetotheFlashpage,wetagaquerystringparameterontothelinks
flash.asp?scene=awards
flash.asp?scene=services
flash.asp?scene=contact
Andsoon.Thescriptflash.asplookssomethinglikethis...
<%@Language="JScript"%><%
Response.Buffer=true;Response.Expires=-1441;
vars=newString(Request.Querystring("scene"));
strScene=(s!=undefined&&s!=)?s:default;
%><!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>FlashControl</title>
</head>
<body>
<objectclassid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,2,0"
width="750"height="395">
<paramname="movie"value="http://edu.cnzz.cn/NewsInfo/movie.swf?scene=<%=strScene%>">
<paramname="quality"value="high">
<embedsrc="http://edu.cnzz.cn/NewsInfo/movie.swf?scene=<%=strScene%>"quality="high"
pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?
P1_Prod_Version=ShockwaveFlash"
type="application/x-shockwave-flash"width="750"height="395">
</embed>
</object>
</body>
</html>
So,ifwehavenothinginthequerystring,itloadsthescenedefault-elseitloadswhateverASPtells
itto.coolhuh?
ThistrickwillworkfromFlash4.0upwards-flash5.0isparticularlynifty,andicouldgettolike
it...
减少客户内IT专业人才缺乏带来的影响。ASP的客户员工利用浏览器进入相关的应用软件,简单易用,无需专业技术支持。 我想问如何掌握学习节奏(先学什么再学什么)最好详细点? 不能只是将它停留在纸上谈兵的程度上。 如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助: ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题: 我想问如何掌握学习节奏(先学什么再学什么)最好详细点? ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。 我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。 接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。
页:
[1]