|
Post by tunescool on Jul 30, 2009 19:12:07 GMT -8
could you post it so i can bookmark it
|
|
|
Post by Wormopolis on Jul 31, 2009 7:03:43 GMT -8
I will have to PM it because I cant repost it.
|
|
|
Post by tunescool on Jul 31, 2009 7:13:54 GMT -8
alrite thanks for everything again
|
|
|
Post by tunescool on Sept 2, 2009 14:16:56 GMT -8
could you put it under the ubbc and the drop down in the other cell and have it disappear when you choose from the drop down? i had a code like this once and thats what it did. are you sure there isnt a way to automatically have whatever youre listening show up in the post page like chris's code, and the others you would just enter as well as the artwork?
|
|
|
Post by Wormopolis on Sept 2, 2009 22:25:53 GMT -8
how would it know what you are listening to?
if you have the main drop down disappear, then you wouldnt be able to change it after the first time it changes.
|
|
|
Post by tunescool on Sept 2, 2009 23:52:55 GMT -8
i have no idea how it knows what youd be listening to, thats the way his code works anyway, it just puts whatever youre listening to in the post, not like boxes show up and the song title is in the box. it would just show up in the post
if you had to modify it then youd have to modify it, all i want is the thing in the other cell
|
|
|
Post by Wormopolis on Sept 3, 2009 1:02:33 GMT -8
change this:
var r = n.parentNode.insertRow(n.rowIndex+1);
to:
var r = n.parentNode.insertRow(n.rowIndex+2);
change this:
c1.className = "windowbg"; c1.innerHTML = "<table width='100%'><tr><td align='left'><font size='2'>What You're Doing:</font></td><td align='right'>"+d+"</td></tr></table>"; var c2 = r.insertCell(1); c2.className = "windowbg"; c2.innerHTML = " <span id='waydhold'></span>";
to this:
c1.className = "windowbg"; c1.innerHTML = "<font size='2'>What You're Doing:</font>"; var c2 = r.insertCell(1); c2.className = "windowbg"; c2.innerHTML = d+" <span id='waydhold'></span>";
change this:
var d = "<select id='waydselect' onchange='changeBox(this.options[this.selectedIndex].value)'>";
to this:
var d = "<select id='waydselect' onchange='changeBox(this.options[this.selectedIndex].value); this.style.display=\"none\" '>";
|
|
|
Post by tunescool on Sept 3, 2009 1:52:21 GMT -8
i did everything, nothing moved
|
|
|
Post by tunescool on Sept 4, 2009 6:36:39 GMT -8
it did move underneath the ubbc, but now its gone. the drop down was in the first cell though
|
|
|
Post by Wormopolis on Sept 4, 2009 15:01:11 GMT -8
I was offline for a couple days due to a laptop power suplly meltdown. I should hopefully figure this out tonight.
|
|
|
Post by Wormopolis on Sept 4, 2009 15:20:52 GMT -8
test[wayd:2:to see if this works-_-_-this day-_-_- ]
|
|
|
Post by Wormopolis on Sept 4, 2009 15:24:19 GMT -8
ok this whould be working now. keep this one: change this: var r = n.parentNode.insertRow(n.rowIndex+1); to: var r = n.parentNode.insertRow(n.rowIndex+2); keep this one: and change this one:
|
|
|
Post by tunescool on Sept 4, 2009 17:03:23 GMT -8
|
|
|
Post by Wormopolis on Sept 5, 2009 10:39:49 GMT -8
when I said "keep this one" I meant to actually keep those changes.
these lines:
c1.className = "windowbg"; c1.innerHTML = "<table width='100%'><tr><td align='left'><font size='2'>What You're Doing:</font></td><td align='right'>"+d+"</td></tr></table>"; var c2 = r.insertCell(1); c2.className = "windowbg"; c2.innerHTML = " <span id='waydhold'></span>";
should change to:
c1.className = "windowbg"; c1.innerHTML = "<font size='2'>What You're Doing:</font>"; var c2 = r.insertCell(1); c2.className = "windowbg"; c2.innerHTML = d+" <span id='waydhold'></span>";
and change this line:
var d = "<select id='waydselect' onchange='changeBox(this.options[this.selectedIndex].value)'>";
to this:
var d = "<select id='waydselect' onchange='changeBox(this.options[this.selectedIndex].value); if(this.selectedIndex>0) this.style.display=\"none\" '>";
|
|
|
Post by tunescool on Sept 5, 2009 11:22:36 GMT -8
i guess it cant disappear, if someone just pulls it down or goes to see what it is there isnt a way to get it off.
|
|