no tengo problemas cuando el campo es un string normal
[body] => There are many variations of passages of Lorem Ipsum available
var nodeObject:Object = new Object();
nodeObject.body = body.text;
pero tengo campos CCK en Drupal y me lso genera asi
[field_demo] => Array
(
[0] => Array
(
[value] => Prueba dato 1
)
)
nodeObject.field_demo1[0]['value']="Hola Mundo";
node.save(nodeObject);
me sale este mensaje
TypeError: Error #1010: Un término no está definido y no tiene propiedades.
at Demo2/saveNode()[C:\xampp\htdocs\Demo\src\Demo2.mxml:34]
at Demo2/___Demo2_Button1_click()[C:\xampp\htdocs\Demo\src\Demo2.mxml:58]
;
por favor ayudenme gracias