ID:179193
 
I know I've seen this somewhere before, but can someone tell me the code to load up a webpage on Dream Seeker load??
And also where should the code go???

LJR
LordJR wrote:
I know I've seen this somewhere before, but can someone tell me the code to load up a webpage on Dream Seeker load??
And also where should the code go???

What you need is link() or browse(). (The difference with link() is that you can specify a URL in double quotes, whereas browse() will use a single-quoted file name or else whatever HTML text you put in the quotes.)

Lummox JR
In response to Lummox JR
usr << link("http://www.aelives.com/kemet")

this is what I have and its comes after my

Login() code.. still not working :(

LJR
In response to LordJR
usr<<"<font size=3>Click here to view my site"
In response to Soccerguy13
This works just fine for all those who are also wondering how this is done.

usr << link("http://www.aelives.com/kemet")

Also as I often forget, if you can get the command to use but don't know how to use it. type it in, select it, and press F1!!!

LJR
In response to LordJR
LordJR wrote:
This works just fine for all those who are also wondering how this is done.

usr << link("http://www.aelives.com/kemet")

Glad you got it to work. You mentioned earlier that this line wasn't working; what was the problem before, exactly?

Lummox JR
In response to Lummox JR
The way I had it formated was wrong..

LJR
In response to LordJR
LordJR wrote:
The way I had it formated was wrong..

Ah, that makes sense. I was worried that link() was going to give me headaches if I used in in certain situations. Some things just don't work right in Login(), or at least work in a confusing way that can be difficult to debug. :)

Lummox JR