How to execute an Actionlist from within a page script?
The call to executeActions will not work from within a page script. This is due to the restriction that the control panel cannot play multiple action lists at the same time and a page script is always executed after a page jump action within an Actionlist The way to do this is by scheduling the playing of the Actionlist as follows: – in the page script – … var w = CF.widget(“myButton”); if (w) w..scheduleActions(); … Now the actions of myButton will be executed after the page jump action is completed.