> My problem is that I then want this template to be processed > by an action.
Not sure what you mean here. This could be read one of two ways: 1) User requests a page using action X. Action X fills a context and control is passed to a template for rendering. Somehow, you want the template rendering to pass something back into the action? If this is what you mean, it doesn't work this way. The action needs to do all processing before rendering. or 2) User requests a page using action X. Action X fills a context and control is passed to a template for rendering. Rendered page sent to user. User does something that submits another request to action X. Somehow, you want this request to contain the original vector object used in the rendering? If this is what you mean, it doesn't work this way. Once the page is sent back to the user, it is completely outside of the realm of Turbine and Velocity, just pure HTML. For action X to work on the vector again, you need to re-assemble this vector from the form field data passed into the request. Intake may help with this. In some cases, caching may as well. Wordman --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
