Well, more accurately "I don't have any example code because it ended up in such a horrible mess that I deleted it"
The relevant bit of Window_Skill I messed around with was:
CODE
@data = []
for i in 0...@actor.skills.size
skill = $data_skills[@actor.skills[i]]
if skill != nil
@data.push(skill)
end
end
To
CODE
@data = []
for i in 0...$data_classes[6].learnings.size
skill = $data_classes[6].learnings
if skill != nil
@data.push(skill)
end
end
And after about a dozen variations on the above I figured it was beyond me.