> Is anyone using frames with turbine?
Yes, The example I gave you last time should be a working example assuming
links point to the right place.
Did you override the DefaultPage or are you using a really old version of
Turbine?
public class DefaultPage extends Page
{
public void build( RunData data ) throws Exception
{
...
String layout = ScreenLoader.getInstance()
.getInstance(data.getScreen()).getLayout(data);
// if the Layout has been set to be null, attempt
// to execute the Screen that has been defined
if ( layout != null )
{
LayoutLoader.getInstance().exec ( data, layout );
}
else
{
ScreenLoader.getInstance().exec ( data, data.getScreen() );
}
}
}
------------------------------------------------------------
To subscribe: [EMAIL PROTECTED]
To unsubscribe: [EMAIL PROTECTED]
Problems?: [EMAIL PROTECTED]