仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 431|回复: 8
打印 上一主题 下一主题

[学习教程] ASP网页编程之用ASP把持Flash

[复制链接]
飘灵儿 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-16 22:33:40 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
由于ASP还是一种Script语言所没除了大量使用组件外,没有办法提高其工作效率。它必须面对即时编绎的时间考验,同时我们还不知其背后的组件会是一个什么样的状况;ControllingFlashwithASP

ArecentprojecthasrequiredafewthingsthatIhaventdoneforawhile.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的客户员工利用浏览器进入相关的应用软件,简单易用,无需专业技术支持。
飘飘悠悠 该用户已被删除
沙发
发表于 2015-1-19 16:28:14 | 只看该作者
我想问如何掌握学习节奏(先学什么再学什么)最好详细点?
兰色精灵 该用户已被删除
板凳
发表于 2015-1-27 18:45:33 | 只看该作者
不能只是将它停留在纸上谈兵的程度上。
简单生活 该用户已被删除
地板
发表于 2015-2-5 11:08:03 | 只看该作者
如何学好ASP,以前也有人问过,把回答给你转过来看看能否对你有帮助:
透明 该用户已被删除
5#
发表于 2015-2-11 11:11:05 | 只看该作者
ASP.Net和ASP的最大区别在于编程思维的转换,而不仅仅在于功能的增强。ASP使用VBS/JS这样的脚本语言混合html来编程,而那些脚本语言属于弱类型、面向结构的编程语言,而非面向对象,这就明显产生以下几个问题:
变相怪杰 该用户已被删除
6#
发表于 2015-3-2 11:23:03 | 只看该作者
我想问如何掌握学习节奏(先学什么再学什么)最好详细点?
深爱那片海 该用户已被删除
7#
发表于 2015-3-11 03:27:47 | 只看该作者
ASP主要是用好六个对象,其实最主要的是用好其中两个:response和request,就可以随心所欲地控制网页变换和响应用户动作了。
冷月葬花魂 该用户已被删除
8#
发表于 2015-3-17 20:08:09 | 只看该作者
我就感觉到ASP和一些常用的数据库编程以及软件工程方面的思想是非常重要的。我现在也在尝试自己做网页,这其中就用到了ASP,我想它的作用是可想而知的。
老尸 该用户已被删除
9#
发表于 2015-3-24 23:31:44 | 只看该作者
接下来就不能纸上谈兵了,最好的方法其实是实践。实践,只能算是让你掌握语言特性用的。而提倡做实际的Project也不是太好,因为你还没有熟练的能力去综合各种技术,这样只能使你自己越来越迷糊。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-24 01:31

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表