Ok, I've looked through all the forums and they have been very helpful...but I think I am leaving out maybe one word or parenthesis or something. Basically what I'm trying to do is take a combo box I have in flash, and send that name to the suspend data field on the LMS using SCORM. I have it working in flash, but when I try to communicate those variables to Lectora it only reports LMSSetValue(cmi.suspend_data,) and doesn't get my variable.In flash I am taking a combo box and on change it displays the name from the combo box in a dynamic text box named suspend. Then I am using this code to set the suspend data var suspend = "cmi.suspend_data" + "," + suspend; fscommand("LMSSetValue", suspend);This works in flash using the ADL test suite. Here is where I think the problem comes in. To get that info. to Lectora I am using this code within that same "on(change)" function: getURL("javascript:window.document.swfanim78.SetVariable('su spend', LMSSetValue('cmi.suspend_data'))");Then in Lectora I have added an action that 1. On show :modify Variable2. Target :suspend3. Value :VAR(suspend)This is where I think I'm getting messed up. I've tried changing the target and values to something else like LMSSetValue, but that doesn't work either.The good news is like I said before, it is definitely communicating with Lectora, because when I publish the Lectora files and test it in the ADL suite, I am getting the suspend data call, but no variable. I'm not an expert at actionscript or Lectora so either could be the problem. Thanks in advance!!