gpt4 book ai didi

mysql - as2,和“;在文本文件中停止读取文本

转载 作者:行者123 更新时间:2023-11-29 00:43:35 24 4
gpt4 key购买 nike

我有一个文本文件,它通过 flashvars 加载到 swf 中:

  • 数据存储在Mysql中,
  • 使用coldfusion和cfquery存储数据
  • 数据通过coldfusion读出到一个文本文件中
  • 通过将文件名传递给 flashvars 将数据加载到 swf,然后读入 actionscript。

问题是,所有的文本都被初始化,直到第一个

&quote;

而且我不确定如何逃避这一点,以及我应该在什么时候逃避。

我正在使用 coldfusion 存储原始文本,并将数据设置为 html 编辑格式

#HTMLEditFormat(form.content)# />

The boy grinned as he led back to the trail.
"A big un, Granser," he chuckled

下面是完整的 ActionScript

// This will be the starting position of the textbox

var starting_ypos:Number;

// Load the Flashvars into the script
text1.text = myVariable;
text2.int = mySecondVariable;

// Make a load vars object
my_data = new LoadVars();

// This will be how fast the text box will scroll
var scroll_speed:Number = text2.int;

// Make my on load function
my_data.onLoad = function() {

// Fix the double space issue
var my_text = unescape(this.content).split("\r\n");
my_text = my_text.join("\n");
my_text = my_text.split("\r");
my_text = my_text.join("\n");

// Set the text in the text box
scroll_text.Text = my_text;

// Set the autosize
scroll_text.autoSize = true;

// Set the starting_ypos
starting_ypos = scroll_text._y;

};

// Load the external text file
my_data.load(text1.text);


// Start the scrolling
this.onEnterFrame = function() {

// Check for hit test with the mask and the mouse
if(!mask_mc.hitTest(_root._xmouse, _root._ymouse)) {

// Check to see if we are in the mask
if(mask_mc.hitTest(scroll_text)) {

// Move the textbox
scroll_text._y -= scroll_speed;

} else {

// Reset the text box
stop();

}

}

}

// Simple stop command
stop();

最佳答案

将变量输入到 Flash 文件时,与号用于分隔变量,很像 URL 参数。

所以 flash 读取这个:

The boy grinned as he led back to the trail. "A big un, Granser," he chuckled

像这样:

var1 = The boy grinned as he led back to the trail. 
var2 = quot;A big un, Granser,
var3 = quot; he chuckled

尝试使用 URLEncodedFormat(FORM.content) 对 flash 的 vars 进行编码。

关于mysql - as2,和“;在文本文件中停止读取文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11209590/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com