How to share your music in multiple groups at soundcloud with one click and script
Loading...
1,418
Loading...
Uploader Comments (brainfoolong)
see all
All Comments (25)
-
Dude you are my hero!!! this works so good!
-
@brainfoolong i`m a little spammer. so... i watched the jquery functions, but didnt found anything. i've tryed /"name group1"|"name group 2" ... |"name group n"/
is there a way to insert a group with more than 2words?
-
@brainfoolong Thank you!!!
-
@oopinaise and : What is the name of the track? thanks :)
Loading...
Sorry to ask again but , do you have a solution to remove from all the group but not from the ones with a "*" on the name of the group (like moderated groups). Thanks
oopinaise 3 weeks ago
@oopinaise You can do that in 2 steps, first remove all with /.*/i - and than add all without a asterisk at the end /[^\*]$/
brainfoolong 3 weeks ago
@oopinaise Or add only moderated ones with /[\*]$/
brainfoolong 3 weeks ago
@brainfoolong hey B. i am very very gratefull to you. these 2scrips are amazing (adding people/sharing tracks). i have a little guestion
so if you want to share the track to some groups that contaign "house" in the name of the group we just use /house/i , but i just want to share to specific groups. is there a way to do that !? the thing is that, i want to share the track to 75groups right now! and after 1week, to remove from that group and share to other 75 specific groups, you know what i mean
zappe187 5 days ago
@zappe187 Hi! This little part of the script is nothing with jQuery, its a regular expression. So you can search for house and jump at the same time with /house|jump/i. Or to search for "dutch house" use /dutch house/i. Or to search for many different groups use /house/jump/dirty/disco/i - This search for house OR jump OR dirty OR disco. Greetz
brainfoolong 5 days ago
@brainfoolong STOP. This was false /house/jump/dirty/disco/i, its must be house|jump|dirty|disco/i - The | is the OR seperator. Greetz
brainfoolong 5 days ago