CERTIFICADO CURSO EN LINEA
Hola, alguien me puede ayudar por favor? pensaba en que despues de visualizar un curso en línea cargado en un lms se obtuviera un certificado, se realizó una prueba que arroja nombre, fecha y calificación pero quisiera que se muestre también el curp y ocupacion, pero ya mis conocimientos no dan para más ¿Me podrían ayudar como poder anexar éstos dos datos al certificado?.
tengo este código, el diseño se encuentra en flash cs6 action script 2.0.
if (_root.student_name != undefined && _root.student_name != "undefined" && _root.student_name != "")
oStudentName.text = _root.student_name;
else
oStudentName.text = "[UNDEFINED]";
if (_root.score != undefined && _root.score != "undefined" && _root.score != "")
oScore.text = _root.score + "%";
else
oScore.text = "0%";
oCurrDate = new Date();
if (_root.dateFormat=="dmy")
oDate.text = oCurrDate.getDate() + "/" + (oCurrDate.getMonth()+1) + "/" + oCurrDate.getFullYear() + " " + oCurrDate.getHours() + ":" + oCurrDate.getMinutes() + ":" + oCurrDate.getSeconds();
else
oDate.text = (oCurrDate.getMonth()+1) + "/" + oCurrDate.getDate() + "/" + oCurrDate.getFullYear() + " " + oCurrDate.getHours() + ":" + oCurrDate.getMinutes() + ":" + oCurrDate.getSeconds();
Muchas gracias.