hi michael, here is an example of a step:
                                 
<cfa_PLPHandler>
<CFIF IsDefined('form.submit')>

        <!--- default form processing here --->
                <CFSET output[thisstep.name] = StructNew()>
                <CFLOOP index="formItem" list="#Form.Fieldnames#">
                        <CFSET "output.#thisstep.name#.#FormItem#" =
Evaluate("Form.#FormItem#")>
                </cfloop>       
        <cfset thisStep.isComplete = 1>
        <cfset thisStep.advance = 1>

<CFELSE>


        <cfoutput>
                                
                <HTML>
                <HEAD>
                <TITLE>Creation of the dynamic PLP</TITLE>
                </HEAD>
                <BODY>
                <H3>Creation of the dynamic PLP</H3>

                <form action="#thisStep.url#?#thisStep.queryString# "
method="POST">
                <P> Please provide the following information in the 
                text fields: </P>
                <TABLE CELLSPACING="2" CELLPADDING="2" BORDER="0">
                <TR>
                <TD>Number of possible paths:</TD>
                <TD><INPUT TYPE="text" NAME="noofsteps"></TD>
                </TR>
                <TR>
                <TD></TD>
                <TD><INPUT TYPE="Submit" NAME="submit" VALUE="Submit">
                </TD>
                </TR>
                </TABLE>
                </FORM>
                </BODY>
                </HTML>
        </cfoutput>     
</cfif>
</cfa_PLPHandler> 
 

Thanks!
Karling.


-----Original Message-----
From: Michael Corbridge [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, 4 April 2001 23:31
To: Spectra-Talk
Subject: Re: Probs with PLP step execution


Karling,

Just curious...
What do you have inside of the steps? Is there any output, or forms (buttons

etc) that move the mechanism along?

As each step comes up, there has to be some input by the user that moves the

PLP on (or back) to the next (previous) to step.

Michael Corbridge
Macromedia
Spectra QA Engineer
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
------------------------------------------------------------------------------
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/spectra_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to