Jump to content

SimplifyKidd

Resident
  • Posts

    32
  • Joined

  • Last visited

Reputation

6 Neutral

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. No, it seems to not be a possibility. When sending the problematic url through llHTTPRequest I get "Unsupported or unknown Content-Type." back in the body parameter... :-(
  2. That's an interesting idea. I will try it. Thanks!
  3. You may be on to something, Quistess! That redirected URL is workling :-) Unfortunately, that will not help me as my script gets the first url from the podcast RSS feed, and I can't see a way to follow the redirection in the script before submitting the url to the parcel... :-( Any ideas?
  4. When trying to play some podcast streams on my group owned parcel, I don't get any sound. These podcasting streams used to work here but now they seem to not work anymore. Thiis is an example of a URL that works fine in a browser but doesn't play on my land: http://www.blogtalkradio.com/sparkwoodand21/2017/09/14/the-return-part-17-18-listener-feedback.mp3 Any ideas what may be wrong? Other streams, like this one, work just fine: http://radio.BigBlueSwing.com:8000/bigblueswing-64.mp3
  5. I like it! I will see if I can figure it out 🙂
  6. Hm... I see. It's not that straight forward... Scaling will only get me so far, as my prims have very different sizes. So, moving the linked prims might be a better way.
  7. I am making a HUD but when creating a minimize button I noticed that alphaing out all the objects only tuned the HUD invisible but still made it clickable, so that I cannot sit on a chair that is "behind" the invisible HUD. Is there a command for making an object "untouchable" rather than invisible?
  8. Thanks, Wulfie! That's even better! 🙂
  9. Yes, it would have been much nicer if the list was passed by reference. What I need to do is convert a list that comes through a http call (so it is just a string with comma separated values) and convert it into an SLS list. I need to do this for up to 10 different lists (maybe more), so I wanted to be able to code the conversion of any string into any list in function_a and just call that function with the different lists and comma separated strings from function_b: list function_a(string Values, list The_list) { ... convert Values into The_list ... return (The_list); } function_b { List1 = function_a(Values1, List1); List2 = function_a(Values2, List2); ... etc }
  10. Thanks a lot! Yes, my example was just an example to know if the argument would be passed as a pointer, so that my_list from function_b would actually have a value after calling function_a. But it seems that I will have to return the list to get the value back to the calling function_a.
  11. Is it possible to pass a list as an argument to a local function, like this: function_a(list the_list) { the_list += ["a new value"] } function_b() { list my_list; function_a(my_list); }
  12. OMG! How could I miss that??? Thank you, Lindal!
  13. I know that links are automatically created in the inventory when you save "outfits" in the Appearance window. But is it possible to create links to your wearable items inside the Inventory. Specifically under the #RLV folder? So I don't have to have multiple copies of the same clothes. Regards, Gordon Cole
  14. I do. I can take the existing scripts out and add new scripts. I can add textures etc. So, I thought someone else might have created a new script for it before I do it.
×
×
  • Create New...