Craz
July 28, 2003, 7:16am
1
http://www.gravitystudio.net/silicon/new_design.html
The picture on the lower left will fade to another picture but that’s all they sent me for pictures so far, and if you notice the text area is showing html coding for some reason and I can’t seem to fix it, if anyone would help with that it would be great appreciated.
system
July 28, 2003, 7:17am
2
Also the buttons wont lead you to anything, i’m just looking for an opinion on the design and a little help with the text field.
system
July 28, 2003, 8:11am
3
Did you set html enabled to true on your textfield?
system
July 28, 2003, 10:10pm
4
Yeah and for some reason it’s still showing up like that.
system
July 28, 2003, 10:44pm
5
what version of flash do you have?
system
July 28, 2003, 11:05pm
7
did you load the text as a variable or did you just type the code into the dynamic box? if you type it into the dynamic box it’s not going to work. i like the site. smooth.
system
July 29, 2003, 4:35am
8
I have Flash MX, and it’s linked to an external txt file outside of flash, this is weird I have no clue why it isn’t working.
system
July 29, 2003, 4:37am
9
system
July 29, 2003, 4:46am
10
loadText = new loadVars();
loadText.load("textfile.txt");
loadText.onLoad = function(OK) {
if (OK) {
myTextField.html = true;
myTextField.htmlText = this.myText;
} else {
myTextField.text = "Error";
}
};
textfile.txt is your txt file;
myTextField is the instance name of your textfield;
myText is the variable inside your txt file;
inside your txt file:
myText=here goes whatever you want to display on the textfield&
if your textfield is inside a movie clip, replace the last 2 lines for:
movieClip.myText.html = true;
movieClip.myText.htmlText = this.text;
Where movieClip is the instance name of the movie clip with the textfield inside
system
July 29, 2003, 4:46am
11
you should change the color of the scrollbar in the news box area, the standard looks really tacky. the rest of the site is good though.
system
July 29, 2003, 5:26am
12
IT WORKED!!! Thank you so much claudio.