I do not have time to troubleshoot people's code. (Hopefully I will again in the future).
I do not have much time to answer questions (but if it is a quick answer, that only takes me a few minutes, I will try to answer).
I really recommend the following site, for myspace customizing questions: Official Myspace Customizing Forum
That is the most reliable source, and the people I know who enjoy helping, and are quite good at it, tend to hang out there.

Saturday, July 04, 2009

Comcast QAM Channels Corvallis Oregon

Here is what I am finding, trying to figure out the most recent QAM channels on my HDTV.
I really don't want to consume the extra power required to add one of their converter boxes. But trying to figure out where the channels are, using any published TV guide, is difficult. My niece did get them all listed for me about a month ago, but they seem to have changed.

As of today (4 July 2009) these are the mappings I am finding:
(Input is welcome to get this filled in or as stuff changes)

2-0 ABC
3-0 NBC
4-0 TV Guide
5-0 Fox
6-0 CBS KOIN
8-0 NBC KGW
9-0 ABC KEZI HD
9-2 KEZI com
10-0 OPB
10-1 KOPV HD
10-3 Create
11-0 CW
12-0
13-0 CBS KVAL
13-1 KVAL DT
13-2 KVAL TV
16-0 KMTR
16-1 KMTR HD
17-0 HSN
19-1054 TV Guide
19-4011 Covallis Local Stuff
19-4012 Research channel
19-4013 KBVR 26 Corvallis, may be a radio station associated with OSU
21-0 Covallis Local Stuff
22-0 Research channel

24-0 CSPAN
25-0 CSPAN2
26-0 kbvr channel 26
28-0 Corvallis Educational channel
29-0 public access
30-0 telep
34-1 klsr HD

64-6 sci fi
64-7 CMT
64-8 FX Fox News

64-203 animal planet
64-204 travel
64-207 CNN

65-1 family
65-5 disney
65-6 tbs

65-10 espn
65-21 tv land

66-11 espn2
66-14 nwcn
66-15 amc
66-17 E-news
66-18 spike
66-19 msnbc

67-15 tnt
67-16 hallmark

67-18 Fx
67-20 Nick

67-212 hln
67-1002 weather
67-5023 FSN

68-301 Beta
68-302 Oxygen
68-304 TLC
68-305 CN

68-306 (? advertising this cool looking purple floor cleaner).
68-307 food
68-308 USA
68-309 (more advertising this time bag things to compress clothing)
68-311 History
68-312 A&E
69-1 Discovery Kids
69-2 Sc (Science)
69-3 History International
69-4 G4
69-5 (some kind of financial news)
69-11 Bio
69-12 LMN
69-14 WE
69-44 sprout
69-5024 ?
72-62 E?
73-1 abc (channel 2, KATU) or (channel 9 KEZI)
73-2
73-4 inside out

80-1 3 NBC KMTR OR is it 8 NBC KGW
80-2
80-3
80-4
80-5 abc
80-8 the CW kids
92-202 CSpan2 Book
92-209 HSN
92-210 QVC
93-3
94-21
101-24 CSPAN
104-303 D

106-3 JTV
107-13 WGN
109-11
109-12 OPB
120-1 DAYSTAR

Sunday, March 15, 2009

myspace 2.0 show only last comment

Show only Last Comment in Myspace 2.0


I highly recommend upgrading to myspace 2.0. This task, and most others, are so much easier in myspace 2.0

Place the following code in the CSS area of Customize Profile:
{! show only most recent comment code by Eileen xiii.us !}
div.commentsModule div.moduleBody ul.moduleList li {display:none;}
div.commentsModule div.moduleBody ul.moduleList li:first-child {display:block}
.i {display:none;}
{! end code to show only most recent comment !}

If you found my code useful, you can help others who search for this solution in google, by adding the following block to your about me or interests area.
This will not show a visible link on your myspace page, it will only be visible to those who read your code.
<a class=i href="http://xiii.us/ms1/">myspace 2.0 show only last comment</a>


If you want to show fewer then 50 comments, but show more then one, it is a bit trickier.
Myspace removes any attempt to use the + within the css area, which would have been idea for this task.
IE does not recognize the nth child selector and most people use IE.

If you want to show X pixels worth of comments, that is easy.
This is still superior to the similar technique used in myspace 1.0 because we can really start measuring at the top of the actual comments, eliminating the need to know the height of anything above the actual comments.

The following code will show 200px worth of actual comments (not including any of the headers).
{! show fewer then 50 comments code by Eileen xiii.us !}
div.commentsModule div.moduleBody ul.moduleList {height:200px; overflow:hidden;}
.i {display:none;}
{! end code to show only most recent comment !}
Change the 200 to the px height of comments you want to show.

Saturday, March 14, 2009

myspace 2.0 friends in scroll box

MySpace 2.0 put Friends In Scroll Box



This is way easier then myspace 1.0, and you do not have to put friends and comments in the same scroll box.

To put ONLY the friends in a scroll box, use one of the following blocks of code.
One puts only the friends in, leaving out the header and links.

The others include the header and/or links.

Change the height value, to the height you want your scroll box.

The code goes into the css area:
{! Friends in Scroll Box Code by Eileen xiii.us !}
div.friendSpaceModule div.moduleBody ol.moduleList{
height:60px;
overflow:scroll;
overflow-x:hidden;}
{! end Friends in Scroll Box !}

If you want to include the " .. Has X Friend" and the links; inside the scroll box (instead of outside the scroll box) but do NOT want to include the section header
(the "Friend Space (Top X)")
Use this code:
{! Friends in Scroll Box Code by Eileen xiii.us !}
div.wrap div.friendSpaceModule div.moduleBody{
height:60px;
overflow:scroll;
overflow-x:hidden;}
{! end Friends in Scroll Box !}

If you want to include the Section header as well, inside the scroll box, use the following code instead:
{! Friends in Scroll Box Code by Eileen xiii.us !}
div.wrap div.friendSpaceModule {
height:60px;
overflow:scroll;
overflow-x:hidden;}
{! end Friends in Scroll Box !}

If you found my code useful, you can help me by adding the following block to your about me or interests area.
This will not show a visible link on your myspace page, it will only be visible to those who read your code.
<a class=i href="http://xiii.us/ms1/">myspace 2.0 friends in scroll box</a>