Using DropBox for Faster Mobile Development

Michael Doub mikedoub at gmail.com
Sat Feb 18 10:57:15 EST 2012


Interesting, I did not realize that livecode included the return character as part of the line chunk.
Both of following work as long as you delete the last character.   I tested this on both 5.5 and 
5.0.2.

on mouseUp
   put URL "http://dl.dropbox.com/u/43797494/LiveCode/LoadLinks" into list
   put  line 1 of list into StacktoLoad
   delete the last character of StacktoLoad
   go URL StacktoLoad
end mouseUp

on mouseUp
   put URL "http://dl.dropbox.com/u/43797494/LiveCode/LoadLinks" into list
   repeat for each line x in list
      delete the last char of x
      put x into StacktoLoad
      exit repeat
   end repeat
   go URL StacktoLoad
end mouseUp




More information about the use-livecode mailing list