主题:  时间已到,请翻译组成员尽快将译稿贴上来。

5D荣誉版主

职务:版主
等级:1
金币:10.0
发贴:177
注册:2000/9/17 8:56:36
#12001/1/8 14:01:26
结止时间已到,还有几位翻译组成员的译稿没有贴上来,请尽快贴出,以便给后面两组留出时间。
如果有其它客观原因而完成不了任务者,也请在这里声明一下。谢谢。



houlong

职务:普通成员
等级:2
金币:1.0
发贴:293
注册:2000/10/27 10:18:46
#22001/1/8 21:07:34
不好意识,学校里太忙了,因为又是期末了,我要晚一些时间。



rainy_5d

职务:普通成员
等级:2
金币:1.0
发贴:225
注册:2000/10/23 19:44:16
#32001/1/8 23:05:03
我也是,年底工作较忙,又准备考试,唉。
能宽限一些时间吗?春节期间我会努力完成的。

哦?我刚才看到有同志帮助别人一起完成一个。我能请求帮助吗?谢谢。
第五组 downloadNetThing ~ FALSE。

编辑历史:[这消息被rainy编辑过(编辑时间2001-01-08 23:10:17)]


南山东篱摄螂

职务:普通成员
等级:4
金币:10.0
发贴:1840
注册:2000/10/22 10:31:19
#42001/1/8 23:11:32
我大部分已译完,并已贴了出来,但是还有一些由于水平有限,怎么也译不出来。
现在反它贴出来,请高手帮个忙,反它译完,谢谢

netLastModDate()
Syntax
netLastModDate()
Description
Function; returns the date last modified from the HTTP header for the specified
item. The string is in Universal Time (GMT) format: Ddd, nn Mmm yyyy hh:mm:ss
GMT (for example, Thu, 30 Jan 1997 12:00:00 AM GMT). There are variations
where days or months are spelled completely. The string is always in English.
The netLastModDate function can be called only after netDone and netError report
that the operation is complete and successful. After the next operation starts, the
Director movie or projector discards the results of the previous operation
to conserve memory.
The actual date string is pulled directly from the HTTP header in the form
provided by the server. However, this string is not always provided, and in that
case netLastModDate returns EMPTY.
When a movie plays back as an applet, this function's date format may differ from
the date format that Shockwave uses; the date is in the format that the Java
function Date.asString returns. The format may also vary on systems that use
different languages.
Example
These statements check the date of a file downloaded from the Internet:
if netDone() then
theDate = netLastModDate()
if theDate.char[6..11] <> "Jan 30" then
alert "The file is outdated."
end if
end if
See also
netDone(), netError()
netPresent 331

netLastModDate()
语法:
netLastModDate()
描述:
函数,返回网上指定项目最后被修改的日期时间,返回值是一字符串,这一字串是通用的格林尼治标准时间格式:
Ddd, nn Mmm yyyy hh:mm:ss GMT (例如:Thu, 30 Jan 1997 12:00:00 AM GMT)。There are variations
where days or months are spelled completely. 日和月
这个字符串总是英语。函数 netLastModDate 往往是在 netDone 和 netError 报告操作完成和成功之后调用。
下一个操作开始后,Director影片或放映机就会丢弃结果从上一个操作占用的内存中。
实际的日期是直接从HTTP服务器上取回的。然而这个字符并不总是能得到的,如果这样 netlastModDate 返回是EMPTY
当影片像 applet 那样播放时,这个函数的日期格式可以是不同的日期格式,

netMIME()
Syntax
netMIME()
Description
Function; provides the MIME type of the Internet file that the last network
operation returned (the most recently downloaded HTTP or FTP item).
The netMIME function can be called only after netDone and netError report that
the operation is complete and successful. After the next operation starts, the
Director movie or projector discards the results of the previous operation to
conserve memory.
Example
This handler checks the MIME type of an item downloaded from the Internet
and responds accordingly:
on checkNetOperation theURL
if netDone (theURL) then
set myMimeType = netMIME()
case myMimeType of
"image/jpeg": go frame "jpeg info"
"image/gif": go frame "gif info"
"application/x-director": goToNetMovie theURL
"text/html": goToNetPage theURL
otherwise: alert "Please choose a different item."
end case
else
go the frame
end if
end
See also
netDone(), netError(), getNetText(), postNetText, preloadNetThing()

netPresent
Syntax
netPresent()
the netPresent
Description
System property; determines whether the Xtras needed to access the Internet are
available but does not report whether an Internet connection is currently active.
If the Net Support Xtras are not available, netPresent will function properly, but
netPresent() will cause a script error
Example
This statement sends an alert if the Xtras are not available:
if not (the netPresent) then
alert "Sorry, the Network Support Xtras could not be found."
end if
netStatus 332

netStatus
Syntax
netStatus msgString
Description
Command; displays the specified string in the status area of the browser window.
The netStatus command doesn't work in projectors.
Example
This statement would place the string "This is a test" in the status area of the
browser the movie is running in:
on exitFrame
netStatus "This is a test"
end

netTextResult()
Syntax
netTextResult(netID)
netTextResult()
Description
Function; returns the text obtained by the specified network operation. If no net
ID is specified, netTextResult returns the result of the last network operation.
If the specified network operation was getNetText(), the text is the text of the file on
the network.
If the specified network operation was postNetText, the result is the server's
response.
After the next operation starts, Director discards the results of the previous
operation to conserve memory.
When a movie plays back as an applet, this function returns valid results for the
last 10 requests. When a movie plays back as a Shockwave movie, this function
returns valid results for only the most recent getNetText() operation.
Example
This handler uses the "netDone and netDone" functions to test whether the last
network operation finished successfully. If the operation is finished, text returned
by netTextResult is displayed in the field cast member Display Text.
global gNetID
on exitFrame
if (netDone(gNetID) = TRUE) and (netError(gNetID) = "OK") then
member("Display Text").text = netTextResult()
end if
end
See also
netDone(), netError(), postNetText
new()333

netThrottleTicks
Syntax
the netThrottleTicks
Description
System property; in the Macintosh authoring environment, allows you to control
the frequency of servicing to a network operation.
The default value is 15. The higher the value is set, the smoother the movie
playback and animation is, but less time is spent servicing any network activity. A
low setting allows more time to be spent on network operations, but will adversely
affect playback and animation performance.
This property only affects the authoring environment and projectors on the
Macintosh. It is ignored on Windows or Shockwave on the Mac.

nudge
Syntax
sprite(whichQTVRSprite).nudge(#direction )
nudge(sprite whichQTVRSprite, #direction)
Description
QuickTime VR command; nudges the view perspective of the specified
QuickTime VR sprite in the direction specified by #direction. Possible values for
#direction are #down, #downLeft, #downRight, #left, #right, #up, #upLeft, and
#upRight. Nudging to the right causes the image of the sprite to move to the left.
The nudge command has no return value.
Example
This handler causes the perspective of the QTVR sprite to move to the left as long
as the mouse is held down on the sprite.
on mouseDown me
repeat while the stillDown
sprite(1).nudge(#left)
end repeat
end














LS

职务:管理员
等级:12
金币:30.8
发贴:8074
注册:2004/1/11 10:31:05
#52001/1/9 13:27:54
真该打,我这因为前一段时间太忙,几乎没动手,ovews能不能统计一下现在所有20个组的大概工作进程,还有几个要加入的成员,我们在重新分配一下任务如何。
当然,对于独立完成任务的成员,我们应该给予特别的奖励。:)


5D艺术网站长。

acneyouth

职务:普通成员
等级:1
金币:1.0
发贴:181
注册:2004/6/9 10:01:26
#62001/1/9 14:00:28
怎么奖励?给个图标吧!



5D荣誉版主

职务:版主
等级:1
金币:10.0
发贴:177
注册:2000/9/17 8:56:36
#72001/1/9 14:36:24
截止今日(2001年1月15日),下列各组已其基本完成:
第1组 ovews
第4组 acneyouth (使用的D8help文档)
第6组 xuyi
第7组 freda xaero
第12组 东影默 (有8个条目未译)
第14组 donlee
第18组 bear
第19组 小虎


下列各组因是合译,故列出已完成者名单:
第13组 civilman
第15组 singingboy

我提议将日期延长到下周末,未译完的兄弟再加把劲,别让这么有意义的一次活动流产了。上述译完的各组,校对组可以开始工作了。

编辑历史:[这消息被ovews编辑过(编辑时间2001-01-15 20:58:36)]
[这消息被ovews编辑过(编辑时间2001-01-19 09:57:18)]


hatu_5d

职务:普通成员
等级:1
金币:0.0
发贴:20
注册:2000/11/6 17:57:14
#82001/1/9 17:18:19
真实该打!!!!现在太忙了!

可以在年后交出来吗???在春节的时候就有事干了!
我的是..alphaThreshold~cachesize()

hatu=zip.


想睡,,睡不着。。。

LS

职务:管理员
等级:12
金币:30.8
发贴:8074
注册:2004/1/11 10:31:05
#92001/1/9 20:04:48
综合一下意见,翻译的工作截止到春节前如何?1.24号,如果有困难,在Director区里还有朋友希望加进来,可以和他们一同来翻。
顺利完成的同志直接奖励图标并加分,合作完成的考虑只加分,符合条件后发图标。实在不好意思,5D现在比较穷,只能有精神奖励了。


5D艺术网站长。

xuyi_5d

职务:普通成员
等级:2
金币:1.0
发贴:179
注册:2000/9/19 15:56:01
#102001/1/10 11:00:09
这么说我快有图标了,真是太好了,对我来说这是最好的奖励了
没译完的兄弟也要快加油啊



LS

职务:管理员
等级:12
金币:30.8
发贴:8074
注册:2004/1/11 10:31:05
#112001/1/10 18:34:11
还有几个朋友也想加进来,没有完成的几组,如果需要帮手,请尽快跟贴,大家一起把这件事做好。:)
建议ovews给没完成的每个人发个邮件提醒。

编辑历史:[这消息被Lakesea编辑过(编辑时间2001-01-10 18:37:25)]

5D艺术网站长。

bear_5d

职务:普通成员
等级:2
金币:1.0
发贴:328
注册:2000/10/17 23:34:42
#122001/1/12 7:30:09
Lakesea,可以不可以给我们奖励个图标!


我想…… 我做…… 我是…… 我努力,我飞翔……

rainy_5d

职务:普通成员
等级:2
金币:1.0
发贴:225
注册:2000/10/23 19:44:16
#132001/1/14 22:53:10
有人和rainy一起完成吗?第五组,真着急啊。



LS

职务:管理员
等级:12
金币:30.8
发贴:8074
注册:2004/1/11 10:31:05
#142001/1/14 23:52:08
恰好还有几个朋友也想加入翻译。
我们尽快把没有完成的组统计出来,然后大家一起合力冲刺一下吧。:)ovews和小虎辛苦了。


5D艺术网站长。

我是小马

职务:普通成员
等级:3
金币:17.0
发贴:794
注册:2000/11/13 14:56:59
#152001/1/15 17:48:49
呵呵,不好意思,最近的确太忙了

第3组我尽力在春节前完成