Hi,
1) hmm...not sure if this is possible.
But you can go to your form- Advanced- More options-Scripts-Submitted script and put:
function ff_yourFormName_submitted(status, message)
{
switch (status) {
case FF_STATUS_OK:
// do whatever desired on success
break;
case FF_STATUS_UNPUBLISHED:
case FF_STATUS_SAVERECORD_FAILED:
case FF_STATUS_SAVESUBRECORD_FAILED:
case FF_STATUS_UPLOAD_FAILED:
case FF_STATUS_ATTACHMENT_FAILED:
case FF_STATUS_SENDMAIL_FAILED:
default:
alert(message);
} // switch
} // ff_yourFormName_submitted
yourFormName is name of your form (not title)
There you just need to enter a code into that "do whatever desired on success", for example, in this way:
function ff_yourFormName_submitted(status, message)
{
switch (status) {
case FF_STATUS_OK:
window.open("http://www.crosstec.org", "_blank", "toolbar=yes,scrollbars=yes,resizable=yes,top=500,left=500,width=400,height=400");
break;
case FF_STATUS_UNPUBLISHED:
case FF_STATUS_SAVERECORD_FAILED:
case FF_STATUS_SAVESUBRECORD_FAILED:
case FF_STATUS_UPLOAD_FAILED:
case FF_STATUS_ATTACHMENT_FAILED:
case FF_STATUS_SENDMAIL_FAILED:
default:
alert(message);
} // switch
} // ff_yourFormName_submitted
I hope this will be a good idea for you
2) For this go to your form- Advanced- more options- form pieces- before form- check Custom and put:
echo '
<style>
#bfFileQueue {
margin-top: -150px;
}
</style>
';
Please adjust px to yourself, for my test page it is 150px
With this css code, box will be in the top of page
Let me know if you need more help
Regards,
Tihana