Another one for ya: using put from server to stack
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller
Re: Another one for ya: using put from server to stack
instead of a button, what if i wanted it like the above on closestack? Not really understanding what you're saying though.
Re: Another one for ya: using put from server to stack
put tLcCode
Will only put the text file into the messagebox.
You have to set the script of something so ...
wait..
Using the three lines from the text file (on mouseUp etc.) just get line 2 and
What FUN!
Simon
Will only put the text file into the messagebox.
You have to set the script of something so ...
wait..
Using the three lines from the text file (on mouseUp etc.) just get line 2 and
Code: Select all
do tLcCode
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Another one for ya: using put from server to stack
lol. I'm locking LC up.
text file
Code: Select all
on closeStack
do mYahoo
end closeStack
Code: Select all
on mYahoo
put line 2 of URL "http://mydomain.com/launch.txt" into tURL
end mYahoo
Code: Select all
on mYahoo
launch URL "http://www.yahoo.com"
end mYahoo
Re: Another one for ya: using put from server to stack
Get rid of the "do"
add the "do" 
Simon
Code: Select all
on closeStack
mYahoo
end closeStack
on mYahoo
put line 2 of URL "http://mydomain.com/launch.txt" into tURL
do tURL
end mYahoo

Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Another one for ya: using put from server to stack
Gonna try it Simon!
LC started smoking!!!!
LC started smoking!!!!
Re: Another one for ya: using put from server to stack
It WORKED! Awesome. I'd get so far away from the solution, then so close. Thanks for being there and helping out. LC is addictively fun!
Re: Another one for ya: using put from server to stack
Interesting.
I wonder if Apple will see this as a binary?
Well you could script anything from a text file.
I'm not sure how stable using what we just did in the "closeStack" maybe further up the line is safer "on closeStackRequest".
Simon
I wonder if Apple will see this as a binary?
Well you could script anything from a text file.

I'm not sure how stable using what we just did in the "closeStack" maybe further up the line is safer "on closeStackRequest".
Simon
I used to be a newbie but then I learned how to spell teh correctly and now I'm a noob!
Re: Another one for ya: using put from server to stack
I'll give it a whirl! Thanks again bud.Simon wrote:Interesting.
I wonder if Apple will see this as a binary?
Well you could script anything from a text file.![]()
I'm not sure how stable using what we just did in the "closeStack" maybe further up the line is safer "on closeStackRequest".
Simon