How can I make a detailed form widget into TWO columns?

how can I make a detailed form widget into TWO columns? I have a contact form with a lot of fields.

Hi Whatsmyjam9999,
You can place a blank composition widget then click tigger 1, click inside target 1 and from menu--> files--> place the image and adjust it's dimensions, you can repeat the same steps for trigger 2 and 3
Here is a video link http://ghai2.worldsecuresystems.com/jing/2013-07-22_1442.swf

Similar Messages

  • I would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??, i would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??

    i would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??, i would like to ask about imovie. my project cannot output and how can i divide my project in imovie into two part??

    Go to the Project Library View and select your project.
    Then FILE/DUPLICATE PROJECT and give the duplicate a name like "your name - part 1".
    Then duplicate it again and give the duplicate a name like "your name - part 2"
    Now you can open "part 1" as a project and delete everything that is in part 2.
    Open "part 2" as a project and delete everything that is in part 1.

  • How can I make my Contact Form send info to my email?

    Greetings! I have below a contact form that i have creaed with some help but I can't seem to make it send the information to my email address after it is submitted. That is my most important issue right now.
    A secondary issue is, can I make it so once this form is submitted it send the info to my email without doing a page redirect?
    Thanks in advance!

    Ok what about this code located at www.ybcreations.com/ContactTest.php?
    <?php
    // Set email variables
    $email_to = '[email protected]';
    $email_subject = 'BestMarketingNames Inquiry';
    // Set required fields
    $required_fields = array('fullname','email','comment');
    // set error messages
    $error_messages = array(
              'fullname' => 'Please enter a Name to proceed.',
              'email' => 'Please enter a valid Email Address to continue.',
              'comment' => 'Please enter your Message to continue.'
    // Set form status
    $form_complete = FALSE;
    // configure validation array
    $validation = array();
    // check form submittal
    if(!empty($_POST)) {
              // Sanitise POST array
              foreach($_POST as $key => $value) $_POST[$key] = remove_email_injection(trim($value));
              // Loop into required fields and make sure they match our needs
              foreach($required_fields as $field) {
                        // the field has been submitted?
                        if(!array_key_exists($field, $_POST)) array_push($validation, $field);
                        // check there is information in the field?
                        if($_POST[$field] == '') array_push($validation, $field);
                        // validate the email address supplied
                        if($field == 'email') if(!validate_email_address($_POST[$field])) array_push($validation, $field);
              // basic validation result
              if(count($validation) == 0) {
                        // Prepare our content string
                        $email_content = 'New Website Comment: ' . "\n\n";
                        // simple email content
                        foreach($_POST as $key => $value) {
                                  if($key != 'submit') $email_content .= $key . ': ' . $value . "\n";
                        // if validation passed ok then send the email
                        mail($email_to, $email_subject, $email_content);
                        // Update form switch
                        $form_complete = TRUE;
    function validate_email_address($email = FALSE) {
              return (preg_match('/^[^@\s]+@([-a-z0-9]+\.)+[a-z]{2,}$/i', $email))? TRUE : FALSE;
    function remove_email_injection($field = FALSE) {
       return (str_ireplace(array("\r", "\n", "%0a", "%0d", "Content-Type:", "bcc:","to:","cc:"), '', $field));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <!-- Contact Form Designed by James Brand @ dreamweavertutorial.co.uk -->
    <!-- Covered under creative commons license - http://dreamweavertutorial.co.uk/permissions/contact-form-permissions.htm -->
              <title>Contact Form</title>
              <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
              <link href="Billy testing/ContactForm.css" rel="stylesheet" type="text/css" />
              <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.3.0/mootools-yui-compressed.js"></script>
        <script type="text/javascript" src="Billy testing/validation/validation.js"></script>
              <script type="text/javascript">
    var nameError = '<?php echo $error_messages['fullname']; ?>';
                        var emailError = '<?php echo $error_messages['email']; ?>';
                        var commentError = '<?php echo $error_messages['comment']; ?>';
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
        </script>
    </head>
    <body onload="MM_preloadImages('Billy testing/x.png')">
    <div id="formWrap">
    <h2>We appreciate your business</h2>
    <div id="form">
    <?php if($form_complete === FALSE): ?>
    <form action="ContactTest.php" method="post" id="comments_form">
              <div class="row">
              <div class="label">Your Name</div> <!--end .label -->
              <div class="input">
              <input type="text" id="fullname" class="detail" name="fullname" value="<?php echo isset($_POST['fullname'])? $_POST['fullname'] : ''; ?>"/><?php if(in_array('fullname', $validation)): ?><span class="error"><?php echo $error_messages['fullname']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Your Email Address</div> <!--end .label -->
              <div class="input">
              <input type="text" id="email" class="detail" name="email" value="<?php echo isset($_POST['email'])? $_POST['email'] : ''; ?>"/><?php if(in_array('email', $validation)): ?><span class="error"><?php echo $error_messages['email']; ?></span><?php endif; ?>
              </div><!-- end. input --><!-- end .context -->
              </div><!-- end .row -->
        <div class="row">
              <div class="label">Comments</div> <!--end .label -->
              <div class="input">
              <textarea id="comment" name="comment" class="mess"><?php echo isset($_POST['comment'])? $_POST['comment'] : ''; ?></textarea><?php if(in_array('comment', $validation)): ?><span class="error"><?php echo $error_messages['comment']; ?></span><?php endif; ?>
              </div><!-- end. input -->
              </div><!-- end .row -->
        <div class="submit">
        <input type="submit" id="submit" name="submit" value="Send Message" />
        </div><!-- end .submit-->
        </form>
         <?php else: ?>
    <p style="font-size:25px; font-family:Arial, Helvetica, sans-serif; color:#255E67; margin-left:25px;">Thank you for your Message!</p>
    <script type="text/javascript">
    setTimeout('ourRedirect()', 5000)
    funtion ourRedirect(){
              location.href='contact.html'
    </script>
    <?php endif; ?>
    </div><!-- end #form-->
    </div>
    <p> </p>
    <!-- end formwrap -->
    </body>
    </html>

  • How can I make a slideshow in iPhoto into a video on an iPad 3?

    Been trying to find a way to make a slideshow in iPhoto into a video. Is there a way to do this?

    You can avoid the Ken Burns effect, but it would be a lot of work:
    See:  http://help.apple.com/imovie/ipad/2.0/index.html#knac3eec39c6
    If you don’t want the Ken Burns effect applied to a photo, set the image position and zoom level to be the same for the start and end points.
    Adjust the movement of photos with the Ken Burns effect
    iMovie applies the Ken Burns effect to the photos you add to your project. With this effect, the camera appears to sweep across and zoom in on the photo. If there are people in the photo, iMovie uses face detection to keep faces within the viewing area.
    You can adjust the Ken Burns effect so that the motion starts and ends on the parts of the image you specify.
    In the timeline, tap the photo you want to adjust.The Ken Burns effect controls appear in the lower-right corner of the image in the viewer.
    To set the way the photo is framed at the beginning, tap the Start button .
    Pinch to zoom in or out, then drag the image in the viewer to frame it the way you want.
    To set the way the photo is framed at the end, tap the End button .
    Pinch to zoom in or out, then drag the image in the viewer to frame it the way you want.
    To close the controls, tap the Ken Burns Effect button , or tap outside of the clip.
    If you don’t want the Ken Burns effect applied to a photo, set the image position and zoom level to be the same for the start and end points.

  • How can a star based slideshow be split into two using metadata?

    I created a slideshow based on a five star sort. It is too long so I want to split it into two, one for Australia and the other for Polynesia.. Images are  are titled under Australia and Polynesia in the metadata. how can I use the metadata headings to creat separate slideshows? Thanks.

    Hey, thank you for responding.
    Perhaps I didn't explain myself correctly. Let me try and walk you though the whole thing.
    When I first synced my video, with the better audio we recored separately, left and right are both on A1. When I merge the video with the new audio, and put it back into the timeline, left and right now take up both A1 and A2. This would be totally fine, but my annoyance is simply with the fact that when editing, I have to select them separately… to do anything.
    So for instance, at the moment I'm editing a dialogue scene, so of course there are times when I want to have audio from one clip, cross over into another's. Such as when a character's dialogue is heard a few seconds before we see them on screen. I can accomplish this effect with the slide too, or just the selection tool (With "linked selection" off of course), but either way, I have to select and move both audio clips separately, or I have to "shift click" to select them both. It just seems like an extra step I shouldn't have to take ever time I want to change the length of the audio in my timeline.
    As I said, I am very new to Premiere Pro, I recently made the switch from Final Cut 7, and when I merged audio and video in that editor, it kept left and right audio linked together.  If for some reason you needed to work with left and right separately, you could hit a button to make that happen.
    I realize it's a minor complaint, but after editing for an hour last night with this thorn in my side, I thought there must be a solution.  

  • How can I make my own form without a wizard

    Hello,
    I already created Tabular Forms using the wizard and everything worked. But now I have different requirements on my from. I need some radio buttons and some option buttons (which values come from different tables) and some normal number fields. So I can't no longer use the tabular forms.
    I created a table which can save all the information I want to provide by the form. This table has a primary key populated by a sequence I created too. Then I created a page which looks like a questionnaire I got before to design this form.
    I added another hidden item (*ID*), which should be filled by my sequence and a button which should do the insert statement.
    But I couldn't find out how to do. I looked a the processes which a made when I use the wizard but I'm not sure what they do actually.
    My question is, how is it possible to have the hidden item filled with the next primary key of my table and then how do put all the item values of the form in an insert statement? I there maybe a better way to acchieve my goals?
    Regards
    Felix

    If you created your sequence with a trigger (usually APEX creates these together for you) then there is no need to have the next ID number, when you do your insert it will automatically fill this in for you. The trigger will see that you're trying to insert null for the ID and instead replace it with the next number in the sequence.
    As for having all your items in an insert statement, you can do this in two ways. One being to create up a DML page process to handle the insert/update/delete statements. You will also need an on load row fetch process to load data onto your form. Make sure your page items are set to Source Type Database Column with the column names in the Source Value field.
    The other option is to create custom page processes to do these for you - for example, one process for inserting, one for updating, one for deleting, one for displaying data, and then you can set the condition of each process to only run if a certain button is clicked. This is useful if you have more code to run with each button click.

  • How can i make a application-form without PHP or How can i make Mailto working properly?

    Dear All,
    I'm working on a application-form for my website. As you can see on the added screenshot.
    My problem is that is can't use PHP, as my host doesn't support this.
    I have tried to make it as a mailto (GET) form but, as i already read online, it isnt working all the time. I get a blank email instead of a sent form (using chrome & mac mail).
    Is there a 3rd way of making this work propperly?
    Thank you in advance for your help!

    >Is there a 3rd way of making this work propperly?
    I'm guessing you have a free hosting account as any paid account should include scripting supoort. You could use a 3rd party email service that hosts the script. Frankly I'd be concerned about loss of privacy using these. 
    If this is a paid account, I'd look for another host.
    Forget about using mailto, it's too unreliable.

  • How can I make a smart form like this one ?

    hi
    according to my business requirements I need to create a PDF form which contains a table with variable number of rows (containing numbers) , so the user should be able to add or remove rows to the table as much as he needs to , and there should be a row showing the total at the bottom of that table.
    I'm absolutely sure that this is possible to be implemented in PDF using javascript but I need some help to do it.
    I saw a working example - the same concept I required.
    >> you could have a look here -
    http://www.windjack.com/PDFSamples/ListPrograming_Part1_XFAForm.pdf
    any idea how I can do so ?
    thank you.

    hi George
    thank you for helping.
    I thought about the same idea >> to add fields and hide them and then show them one by one upon to user reuest , but I think that will solve just a part of the problem regarding the functionality ,,, while the formatting issue won't be solved ,,, I mean look at the form I linked to ,,, the table borders and final appearance remains the same even after adding a new row.
    is it possible to do so if I used AcroForm and hide the fields ?
    and how will I get the total of those variable number of rows after user finished adding rows ?
    regarding the other thing you mentioned (pushing items down as new rows are added) ,,, I think I can avoid this by adding the table in a separate page ,,, because according to my business requirements ,,, rows that will be added won't exceed 30 maximum.
    thank you for your time.

  • How can I make a timer that turns on two relay channels where each channel can be on for different times of 0 to 10 seconds user selectable

    I am trying to make it clearer, I use a scxi-1161 and two of its relay channels to operate an MOV. I want to be able to apply power to two different pins on the MOV using two seperate relay channels.. but I want to be able to have it automatically cycle the two pins on and off by what time (in seconds) the user selects.. and the selection can be changed during cycling.

    Sorry I can't convert back to 5.1, but here are some pictures that might help. The mechanical action for the Start and Stop buttons is Latch When Released. In LabView 5.1, the While loop doesn't have a Stop if True option so you'll need to add an inverter between the terminal for the Stop button and the Continue terminal of the While loop.
    Attachments:
    TwoToggleTimers_frontpanel.jpg ‏31 KB
    TowToggleTimers_diagram_true.jpg ‏100 KB
    TowToggleTimers_diagram_false.jpg ‏99 KB

  • How can I make a autocad dwg drawing into a rendering in cs4?

    I'm taking an autocad file of a product into illustrator/photoshop cs4 workflow to create a rendering quality type graphic....
    Is there a good tutorial anywhere, or will anyone be willing to help me through this project??
    So far I have imported a dwg into illustrator, and when the cursor is on the gray lines (I made them that way in autocad), a blue line appears, and "path" shows up... those gray lines are a bit larger than what I think I will need... what is going on?
    That is where I am at.... I need help from here...

    <i don't know what's going on with your file. i get a lot of pdfs from autocad with layers intact. maybe someone else on here knows.>
    I am not sure anything IS wrong with my file. my PDF does have all the layers intact. The problem is getting Illustrator to read those PDF layers...
    1) Pt to mm font conversion:
    Thanks for the font clarification. What exactly is the conversion between pt (which i belive is "points" on the pica system, correct?) and mm?) In Illustrator, if I select a 10pt stroke, it converts it to 3.528 mm. And if I select 3 pt, that's 1.058 mm. However, I went online to some sort of font converter website and it said that 3 pts = 1.0542 mm and 10 pt = 3.5141 mm. So what's the converstion. Btw, here is an interesting website that explains the different font types: http://www.oberonplace.com/dtp/fonts/point.htm
    Even if i set the units to mm, i noticed that the items ins the stroke drop down list are still in "pt". How come Illustrator doesn't have the increments in mm?
    About selecting everything on one layer - if i click the circle it says "click to target, drag to move appearance." what does that mean, what does the appearance refer to besides opacity? And if i click anywhere to the right of that circle, it says "indicates selected art (click to select art)." I assume that the triangle in the upper right hand corner of the layer just means that layer is current)
    2) Pen tool:
    Your tip on using the "join" command while using the pen tool is GREAT. thanks. that totally helps me. and it's control + j on a PC. what is the difference between the pen and the pencil tool? y do u recommend pen over pencil?
    3) pc3 extension
    Can you please tell me more about this? When and where is should the pc3 extension be used? What is difference exactly between Adobe PDF and Adobe PDF.pc3? What are alignments?
    any other tips on how to color quickly and efficiently?

  • How can I make a new album go into a folder in iPhoto without dragging it from the bottom of the list?

    This is something that has bugged me all the years I have used iPhoto. When i create a new album, it always goes to the bottom of my very long list of albums. I would like to be able to select the folder that the album goes in as I create it. Im really tired of dragging the new album from the bottom. With a touch pad it is a very tricky manuver.
    Thanks for your help.

    You can right click in the album area and sort them - as far as I know there is no easy way - suggest to Apple - iPhoto menu ==> provide iPhoto feedback
    LN

  • How can I make an Equation apply to an entire column, but only use the values in the specific rows?

    I am working on a research project using Numbers 09 and have columns for values that require me to use formulas using values in other columns. Becuase I am lazy and have 180 rows of data, I would like to find a way to have a formula apply to an entire column so that I don't have to go row by row inputting the formula.
    Essentially, I want to be able to have N(X)=F(X)+G(X). Where X is the row number. Is this possible?
    The real formula I want to have is (4*(F(X))^2)/G(X)
    Thanks! 

    Place this formula in your chosen column in the first row containing data in columns F and G.
    =(4*F^2)/G
    Press enter to confirm the entry. The result will appear in the cell.
    Click (once) on the cell containing the formula.
    Shift Click on the cell in the same column on the last row containing data in F and G to select all cells between. .
    Go Insert > Fill > Fill down.
    Done.
    Regards,
    Barry

  • How can you add data from a variable into a column in a data flow?

    I need to populate a table with data from a variable. The data type of the variable is String. I'm running into issues doing it the way I am. I have variable
    User:VariableName = "Some moderately sized string of data"
    When I try to use a Derived Column Transformation Editor to insert the variable into the data flow as a new column, SSIS forces the Data Type to be Unicode String[DT_WSTR] and I can't change it. Additionally the length is 0 and I also can't change that.
    When I run the package it errors with a truncation error. If the length is 0 then that makes sense but then why can't I change it to something that makes more sense?
    What is the correct way to go about this?

    Use advanced editor to change data type and length.
    http://www.sureshjoshi.com/development/ssis-string-variables-in-derived-columns/

  • How can I make a server differ between two or more clients?

    How can I make a server differ between two or more clients?
    The clients can connect and talk to the server fine, but how can I make the server talk to one, two or all clients? i.e. what would be a good way to implement this?
    Currently, the server listens for connections like this:
    while (listening) {
    try {
    new ServerThread(this, serverSocket.accept()).start();
    I guess one way would be to add the ServerThreads to a Hashtable with the client ID as key, and then get the ServerThread with the proper client ID, but this seems unnecessary complicated. Any ideas?

    Complicated was perhaps the wrong word, I should have
    written something like it doesn't "feel" right. Or is
    this a common and good way to solve communication
    between a server and multiple clients?Thats pretty much how I do it. I normally use an array or ArrayList of Sockets instead of HashTable, with [0] being the first player etc.... Then you can communicate with exactly who you want. If you want to send bytes to all of them, just send the same thing to each socket individually (or is there a better way to do this?).

  • How can i make a song a ringtone, how can i make a song a ringtone?

    Can someone please help me how can I make my converted m4 songs into a ringtone.
    Also, how can i review and validate my account without entering any credit card

    There are many apps in the App Store, which you can download (many are free) that will let you take a song on your phone and turn it into a ringtone.  Virtually all of them will require that once you've made the clip, you do something like email it to yourself, then connect your phone to your computer, save it iTunes, then sync it to your ringtones library on your phone.  Go to the App Store and type in Ringtone.  Lot's of options will appear.

Maybe you are looking for

  • How to Read from multiple channels

    Dear Sir I am acquiring data using FP-RTD-122 using OPC Client software. I ahve made one socket for that and i am using command CWDataSocket1.AccessMode = cwdsReadAutoUpdate CWDataSocket1.URL = "opc://localhost/National Instruments.OPCFieldPoint/FP R

  • How to protect web application from piracy?

    I m looking for solution to protect Web application from piracy. I want my application run on web server for which it is built, & it musn't run on any other web server. how can i protect my web application from piracy?. Our .Net applications we prote

  • Is there any way the apple store can transfer all of my music from one ipod to a new ipod?

    i have an ipod touch and i want a new ipod classic but not all of my music is on my itunes library if i brought the itouch to the apple store could they transfer everything? thanks

  • 10G NEW FEATURE-HOW TO FLUSH THE BUFFER CACHE

    제품 : ORACLE SERVER 작성날짜 : 2004-05-25 10G NEW FEATURE-HOW TO FLUSH THE BUFFER CACHE =============================================== PURPOSE 이 자료는 Oracle 10g new feature 로 manual 하게 buffer cache 를 flush 할 수 있는 기능에 대하여 알아보도록 한다. Explanation Oracle 10g 에

  • How to get invoice price based on order date or delivery date?

    Hi, Our system is configured to create invoices with pricing based on date of delivery. But we have a number of customers who get pricing based on date of order. Right now, people are manually changing the price and then generating the invoice. Is it