Hi,
I have a slide where I ask students to input data on a graph and I want to use that data on a graph on another slide. How can I save the graph data that the student entered and reuse it later? If this is done in a script I would appreciate a code example.
Thank you,
Feras
It depends on how the data is being input. You can access any variable created in a component’s CL, using componentName.script.variable
.
Content of an input can be accessed using inputName.content
or inputName.latex
.
Tables using tableName.cellContent(row, column)
or table.cellNumericValue(row,column)
.
Graphs have number
, numberList
…