Tuesday, March 30, 2010

create an email submission form in...

Can any one?help me?I am trying to create a form which my viewers can complete with their email address and submit it to me?by email or webserver I am new to this and would like to know if this can be done and how to do it.

Many Thanks

Alijj5

create an email submission form in...

My favorite so far is this

http://net.tutsplus.com/javascript-ajax/submit-a-form-without-page-refresh-using -jquery/

  • this works
  • Disable Submit button in workspace

    Hi all, I actually have two questions but the subject line one is the more pressing.

    I have placed a submit button on my form so that i would be able to have a complete button in workspace. The thing is that i would like to place some validation on that button, but submit buttons do not allow scripting on the click event. Basically is there an event i can script against to prevent submission of the form? i was thinking the maybe the presubmit, but i couldn't find any info if that was possible.

    The second question is that I tried using a process field custom object, i know i can script against the click event to prevent submission there. However, when the form is passed to the next user, the pdf is replaced with a jboss 404 page (i added a screenshot so that you'd get an idea)

    I have a custom renderer that is a copy of the default renderer with a policy and reader extensions at the end, with the option to render the form only once.

    Disable Submit button in workspace

    I have placed a submit button on my form so that i would be able to have a complete button in workspace. The thing is that i would like to place some validation on that button, but submit buttons do not allow scripting on the click event. Basically is there an event i can script against to prevent submission of the form? i was thinking the maybe the presubmit, but i couldn't find any info if that was possible.

    Disable Submit button in workspace

    Yes, but when i render the form in workspace, the flash complete button is tied to the submit button. So when the user clicks that button, it would actually click the submit button rather than the proxy button that you suggested to do the validation. Unless i misunderstood your suggestion.

    You can tweak the whole code of Submit button's click event as follows:

    // check all your conditions e.g

    if(txtUserName.rawValue==null || txtUserName.rawValue=='''')

    {

    xfa.host.messageBox(''Please enter the User Name.'');

    }else

    {

    ?// place all the pre-defined code here...

    }

    I have tried this in Workspace ES and it works... hope this will help you

    Nith

    Thanks for the response, but what I think you're talking about is the submit button in the process field. I usually do use that button and place my validation in there but in this case I'm using a regular button of type submit (because if the issue that I mentioned as the second problem in my post), which you'll notice has the click event disabled.

    Bump. Can anyone help me with this? Its become important to switch to the process fields now, but for the reason I mentioned in my first post I'm still having problems.

    Thanks

    Billy

    Has anyone ever seen the error before? The 404 page?

    Return data on fillable pdf

    Sending out a fillable pdf, but when page comes back (even using the distribute option) the data is apparently in xml form.?It is not in the filled out page form.?How do I change the default on my pdf form to make it come back as a filled form?

    E4X maximum value

    Hi

    I dont know how i can get the maximum or minimum value from an XML like this:

    %26lt;node%26gt;

    ?%26lt;subnode%26gt;

    ?%26lt;name%26gt;Jack%26lt;/name%26gt;

    ?%26lt;age%26gt;21%26lt;/age%26gt;

    ?%26lt;/subnode%26gt;

    %26lt;/node%26gt;

    %26lt;node%26gt;

    ?%26lt;subnode%26gt;

    ?%26lt;name%26gt;Maria%26lt;/name%26gt;

    ?%26lt;age%26gt;55%26lt;/age%26gt;

    ?%26lt;/subnode%26gt;

    ?%26lt;subnode%26gt;

    ?%26lt;name%26gt;John%26lt;/name%26gt;

    ?%26lt;age%26gt;37%26lt;/age%26gt;

    ?%26lt;/subnode%26gt;

    %26lt;/node%26gt;

    I need to get maximum age attribute value using E4X syntax (in this case 55).

    Is that possible? Have you some ideas to solve my problem?

    Thanks

    E4X maximum value

    If this post answered your question or helped, please mark it as such.

    I don't know if you can do it purely with e4x, but this works:

    %26lt;?xml version=''1.0'' encoding=''utf-8''?%26gt;
    %26lt;mx:Application xmlns:mx=''http://www.adobe.com/2006/mxml''%26gt;
    ?%26lt;mx:XML id=''myData''%26gt;
    ?%26lt;data%26gt;
    ?%26lt;node%26gt;
    ?%26lt;subnode%26gt;
    ?%26lt;name%26gt;Jack%26lt;/name%26gt;
    ?%26lt;age%26gt;21%26lt;/age%26gt;
    ?%26lt;/subnode%26gt;
    ?%26lt;/node%26gt;
    ?%26lt;node%26gt;
    ?%26lt;subnode%26gt;
    ?%26lt;name%26gt;Maria%26lt;/name%26gt;
    ?%26lt;age%26gt;55%26lt;/age%26gt;
    ?%26lt;/subnode%26gt;
    ?%26lt;subnode%26gt;
    ?%26lt;name%26gt;John%26lt;/name%26gt;
    ?%26lt;age%26gt;37%26lt;/age%26gt;
    ?%26lt;/subnode%26gt;
    ?%26lt;/node%26gt;
    ?%26lt;/data%26gt;
    ?%26lt;/mx:XML%26gt;
    ?%26lt;mx:Script%26gt;
    ?%26lt;![CDATA[
    ?import mx.utils.ArrayUtil;
    ?
    ?private function getMax(xl:XMLList):uint{
    ?var maxVal:uint = 0;
    ?for each(var val:uint in xl){
    ?maxVal = Math.max(maxVal, val);
    ?}
    ?return maxVal;
    ?}
    ?]]%26gt;
    ?%26lt;/mx:Script%26gt;
    ?%26lt;mx:Text text=''{getMax(myData..age)}''/%26gt;
    %26lt;/mx:Application%26gt;

    Captivate 3/4 SWF does not play

    When I create a Captivate demo, whether it is in Cap3 or 4 and publish it (SWF, zip file, full screen, Flash 7) and send it to others on my team, many of them cannot open the file.?I have no idea why I can run it but they cannot.?After I loaded?IE 7 I was unable to get a SWF file to run either, but (don't know if this had anything to do with it) after I loaded the Sun Java applet I could run it again.

    I am certain these folks have Flash player loaded.?

    This problem also goes to our customers who cannot play the file from an LMS or a RightNow database containing swf demos created in Captivate...our only solution is to publish to .exe but some customers are reticent to open this type of file.

    What else could be the problem?

    I looked in this Forum but could not find the answer.

    Thank you for your help.

    PLC317

    Captivate 3/4 SWF does not play

    Hi there

    It depends on how you are trying to do things. If you are sending only a raw SWF, it may not be properly associated in Windows so that Windows knows what to do with it when the user runs it.

    The looming question here is to ask if that's what you are doing. This is one of the few different reasons Captivate normally creates an HTML page when you publish output.

    Cheers... Rick

    Helpful and Handy Links

    Captivate Wish Form/Bug Reporting Form

    Adobe Certified Captivate Training

    SorcerStone Blog

    Captivate eBooks

    Captivate 3/4 SWF does not play

    Hi Rick,

    Thanks for your response.

    I want to clarify what you are saying.

    Can I assume when you refer to the association in Windows you are talking about Windows Explore/Tools/Folder Options/File Types?

    I have asked colleagues who review my demos to ensure they have this association as well as have Flash player downloaded, but they still cannot get the file to play.?I am trying to understand why.

    On a Website, what is the best way to put this out there for customers to see??We have been loading the .swf file (I assume that is what you mean by 'raw').

    In the RightNow app, I don't think we can put both the HTML and the SWF in a particular folder (in this app) and then just call the .SWF. So I load the .SWF and the .EXE.?

    We also load to SumTotal LMS.?Are you saying that unless customers have the appropriate associations, they will not be able to play a raw .SWF if loaded there either??

    I also think I need a better understanding about the HTML/SWF relationship and why both might be needed (if that is what you are saying).

    Isn't Flash Player included in Windows software?

    Thank you for your response, Patty

    On Click event in table cell

    Does anyone know how to script an on click event that would change a field border color from none to black?

    Pattern Swatches

    Please help!!! I need help with a defining a pattern in Illustrator CS2.?I create a repeat print and click on Define Pattern for the repeat to go into the swatch pallette.?This creates my repeated print, however, when I fill a shape with my new pattern swatch, and then go to move the shape which my repeated pattern is in, the pattern stays still and the shape scrolls across it resulting in the pattern not remaining exactly the same within the shape.?I have managed to create it where it does remain the same in the shape when the shape is moved around the page before but not every time.?Is there a check box or menu option I need to select to toggle this feature on/off? Or is this a problem with my illustrator?

    Pattern Swatches

    In order to fix a pattern within a shape, you need to select the shape and use Expand from the object menu. Be ready for some unexpected consequences though. Look at the file in outline mode to see what happens.

    Pattern Swatches

    How are you moving the object??There should be checkboxes in the move dialog for objects and for patterns. Check the one(s) you wish to move. (You can also move only the pattern by unchecking the object checkbox.)

    You can also move the pattern by holding down the ~ key as you click and drag with the selection tool (black arrow)

    It's an option in the preferences: ''Transform pattern fills'' or the like - I'm using a German version. Check it.

    You star! It has worked. Thanks so much for your time.

    Date: Fri, 7 Aug 2009 10:04:07 -0600

    From: forums@adobe.com

    To: tracyfreelance@hotmail.co.uk

    Subject: Illustrator Pattern Swatches

    How are you moving the object? There should be checkboxes in the move dialog for objects and for patterns. Check the one(s) you wish to move. (You can move only the pattern by unchecking the object checkbox.)

    You can also move the pattern by holding down the ~ key as you click and drag with the selection tool (black arrow)

    %26gt;

  • lipstick
  •