can’t figure out why the dynamic text boxes in my dynamic clip arent picking up the variable when I loop through this recordset!
the trace (you’ll see here right after I try two ways to assign the variable) traces the correct info back…
argghhh!!!
code (incomplete, rest of function works great though! - thanks to Smee’s help!":
getSweetWater_Result = function(rs){
// Set the height of the menu to zero initially, since there are no items yet.
var ItemListHeight = 0;
recordSetLength = rs.getLength()
// Loop through the code that adds an item to the list.
for(var i=0; i<recordSetLength; i++){
//attach mc's
C = MenuHolder.attachMovie("dynClip", "dynClip_"+i, i);
C*.boatName = rs.getItemAt(i).vp_model;
this["dynClip"+i].boatPrice = rs.getItemAt(i).vp_pkg_cost;
trace(rs.getItemAt(i).vp_model);