Need advice on creating a form

I would appreciate any imput or advice on generating a sign up form for a non profit.  We would like to have members be able to fill in their names on the attached and then have that form emailed.
http://http://www.monmouthboatclubracing.org/Race_Committee/2009_Race_Committee_Sign_up.pd f
I have no problem recreating this as a form in Dreamweaver CS3.  The problem is that I have no experience creating the php scripts.  I have David Power's Essential Guide - I followed the tutorials but I admit what this form entails may be a little too complicated for me.  I run a few websites using Dreamweaver, am familiar with html, but I'm not a professional.
I was wondering if anyone knew  of a free online form generater that could handle this (I've used simple feedback forms) but haven't seen anything that could create something more entailed like what I want to do.  Or is there an easier way for me to do it myself?
Any imput is apprecitaed.  Thanks.

This PHP Formmailer script from DB Masters http://dbmasters.net/index.php?id=4  conceals your email address from prying eye email harvesters and it has several  spam controls built into its script including  hidden field (honeypot), "sorta  captcha,"  and time limits on submissions to keep robots from exploiting your  forms.  Free to use if you credit the author; $20 if you don't.
Q&A  Forum - http://dbmasters.net/forum.php?id=3&fid=9
Nancy O.
Alt-Web Design & Publishing
Web | Graphics |  Print | Media Specialists
www.alt-web.com/
www.twitter.com/altweb

Similar Messages

  • Need advice on creating buttons in email please

    I am looking to send an email to a group of friends with an invitation attached that I have created in Pages.
    The invite is written in MadGab form so ideally I would like to place a button underneath that says "Uncle" that can have the invitation animate to the standard 'for dummies' version. 
    If that is asking too much, the button could just email me back asking for translation.  (It would be cool if I could have an autoreply to those messages with some sassy note like 'the idiot assistance office is currently closed but we will respond to your request when we feel like it')
    Can anyone give me some advice?  I am sadly one of those people that knows enough to be danger to herself and others but not enough to know how to do this without hours more browsing for help. 
    (Sorry if this is the wrong forum, btw...!)
    For fun, here is the invite:

    I am looking to send an email to a group of friends with an invitation attached that I have created in Pages.
    The invite is written in MadGab form so ideally I would like to place a button underneath that says "Uncle" that can have the invitation animate to the standard 'for dummies' version. 
    If that is asking too much, the button could just email me back asking for translation.  (It would be cool if I could have an autoreply to those messages with some sassy note like 'the idiot assistance office is currently closed but we will respond to your request when we feel like it')
    Can anyone give me some advice?  I am sadly one of those people that knows enough to be danger to herself and others but not enough to know how to do this without hours more browsing for help. 
    (Sorry if this is the wrong forum, btw...!)
    For fun, here is the invite:

  • Need help with creating custom form

    hi all,
    i'm working on creating a new form. it has 2 blocks for 2 tables. headers and lines tables. the headers table mostly have columns that are id's from other tables. i.e. customer_id, location_id etc.. in my screen, obviously i would not show the id's. i'll display the descriptions / names of the id's instead like customer_name for customer_id... but in order to do this i created a table that joins more than 2 tables. so in the block query data source name, i enter the name of this view.. then i add a ON-INSERT, ON-UPDATE, ON-DELETE triggers at block level and i call the corresponding package which does the insert, update and delete. i'm able to insert but update and delete causes a problem. "ORA-01445: cannot select ROWID from, or sample, a join.. ".. i'm thinking the reason is that when the form does an update or delete, it locks the record which causes the error.. also the reason i need the view is because i need to be able to query the customer_name in the screen instead of the customer_id... what i can't figure out is how i can make this work... or a work-around may be...
    can anyone help.
    thanks

    Matt Rasmussen wrote:
    You're right that the form is locking the record so you just need to control how it locks the record with an on-lock trigger. From the Oracle Applications Developer's Guide:
    page 3-9:
    When basing a block on a view, you must code ON–INSERT, ON–UPDATE, ON–DELETE, and ON–LOCK triggers to insert, update, delete, and lock the root table instead of the view.
    Most of the on-lock triggers I have written follow this template:
    <pre>     SELECT     field1, field2, field3
         INTO     :block.field3, :block.field2, :block.field3
         FROM     view
         WHERE     rowid = :block.row_id
         FOR UPDATE OF field1, field2, field3;</pre>
    I think once you've added this trigger, your form will work the way you want it.hi,
    i tried your suggestion but still get the same error.. anyways, here are the details of what i have so far.
    here's my table.
    CREATE TABLE XXPN_VR_VOL_HEADERS_ALL
      VOL_HEADER_ID     NUMBER,
      CUSTOMER_ID       NUMBER,
      LEASE_ID          NUMBER,
      LOCATION_ID       NUMBER,
      VAR_RENT_ID       NUMBER,
      PERIOD_SET_NAME   VARCHAR2(15 BYTE),
      PERIOD_NAME       VARCHAR2(15 BYTE),
      IMPORT_FLAG       VARCHAR2(1 BYTE),
      IMPORT_DATE       DATE,
      CALC_TYPE         VARCHAR2(30 BYTE),
      PASSTHROUGH_FLAG  VARCHAR2(1 BYTE),
      COMMENTS          VARCHAR2(2000 BYTE),
      CREATED_BY        NUMBER,
      CREATION_DATE     DATE,
      LAST_UPDATED_BY   NUMBER,
      LAST_UPDATE_DATE  DATE
    );here's my view.
    create or replace view xxpn_vr_vol_headers_v ( row_id
                                                  ,vol_header_id
                                                  ,customer_id
                                                  ,customer_name
                                                  ,lease_id
                                                  ,lease_name
                                                  ,lease_number
                                                  ,location_id
                                                  ,location_code
                                                  ,var_rent_id
                                                  ,var_rent_number
                                                  ,period_set_name
                                                  ,period_name
                                                  ,import_flag
                                                  ,import_date
                                                  ,calc_type
                                                  ,passthrough_flag
                                                  ,created_by
                                                  ,creation_date
                                                  ,comments
                                                  ,last_updated_by
                                                  ,last_update_date )
    as
      select xvvha.rowid
            ,xvvha.vol_header_id
            ,xvvha.customer_id
            ,hp.party_name
            ,xvvha.lease_id
            ,pl.name
            ,pl.lease_num
            ,xvvha.location_id
            ,loc.location_code
            ,xvvha.var_rent_id
            ,pvr.rent_num
            ,xvvha.period_set_name
            ,xvvha.period_name
            ,xvvha.import_flag
            ,xvvha.import_date
            ,xvvha.calc_type
            ,xvvha.passthrough_flag
            ,xvvha.created_by
            ,xvvha.creation_date
            ,xvvha.comments
            ,xvvha.last_updated_by
            ,xvvha.last_update_date
        from xxpn_vr_vol_headers_all xvvha
            ,hz_parties hp
            ,pn_leases_all pl
            ,pn_locations_all loc
            ,pn_var_rents_v pvr
       where -1 = -1
         and xvvha.customer_id = hp.party_id (+)
         and xvvha.lease_id = pl.lease_id (+)
         and xvvha.location_id = loc.location_id (+)
         and xvvha.var_rent_id = pvr.var_rent_id (+);here's my ON-UPDATE trigger block level
    begin
      xxpn_vr_vol_data_pkg.update_vr_vol_hdr_data ( p_vol_header_id     => :XXPNVRVOLHDRS.vol_header_id
                                                   ,p_customer_id       => :XXPNVRVOLHDRS.customer_id
                                                   ,p_lease_id          => :XXPNVRVOLHDRS.lease_id
                                                   ,p_location_id       => :XXPNVRVOLHDRS.location_id
                                                   ,p_var_rent_id       => :XXPNVRVOLHDRS.var_rent_id
                                                   ,p_period_set_name   => :XXPNVRVOLHDRS.period_set_name
                                                   ,p_period_name       => :XXPNVRVOLHDRS.period_name
                                                   ,p_import_flag       => :XXPNVRVOLHDRS.import_flag
                                                   ,p_passthrough_flag  => :XXPNVRVOLHDRS.passthrough_flag
                                                   ,p_comments          => :XXPNVRVOLHDRS.comments
                                                   ,x_last_updated_by   => :XXPNVRVOLHDRS.last_updated_by
                                                   ,x_last_update_date  => :XXPNVRVOLHDRS.last_update_date );
    end;here's my code in ON-LOCK trigger block level
    begin
      select lease_id
            ,lease_name
            ,lease_number
            ,location_id
            ,location_code
            ,customer_id
            ,customer_name
            ,var_rent_id
            ,var_rent_number
            ,period_name
            ,comments
            ,period_set_name
            ,import_flag
            ,passthrough_flag
            ,created_by
            ,creation_date
            ,last_updated_by
            ,last_update_date
        into :XXPNVRVOLHDRS.lease_id
            ,:XXPNVRVOLHDRS.lease_name
            ,:XXPNVRVOLHDRS.lease_number
            ,:XXPNVRVOLHDRS.location_id
            ,:XXPNVRVOLHDRS.location_code
            ,:XXPNVRVOLHDRS.customer_id
            ,:XXPNVRVOLHDRS.customer_name
            ,:XXPNVRVOLHDRS.var_rent_id
            ,:XXPNVRVOLHDRS.var_rent_number
            ,:XXPNVRVOLHDRS.period_name
            ,:XXPNVRVOLHDRS.comments
            ,:XXPNVRVOLHDRS.period_set_name
            ,:XXPNVRVOLHDRS.import_flag
            ,:XXPNVRVOLHDRS.passthrough_flag
            ,:XXPNVRVOLHDRS.created_by
            ,:XXPNVRVOLHDRS.creation_date
            ,:XXPNVRVOLHDRS.last_updated_by
            ,:XXPNVRVOLHDRS.last_update_date
        from xxpn_vr_vol_headers_v
       where rowid = :XXPNVRVOLHDRS.ROW_ID
         for update of lease_id
                      ,lease_name
                      ,lease_number
                      ,location_id
                      ,location_code
                      ,customer_id
                      ,customer_name
                      ,var_rent_id
                      ,var_rent_number
                      ,period_name
                      ,comments
                      ,period_set_name
                      ,import_flag
                      ,passthrough_flag
                      ,created_by
                      ,creation_date
                      ,last_updated_by
                      ,last_update_date;
    end;properties for the block
    Query Data Source Type: Table
    Query Data Source Name: XXPN_VR_VOL_HEADERS_V
    DML Target Type: Table
    DML Target Name: XXPN_VR_VOL_HEADERS_V
    i'd appreciate any help.
    thanks

  • Need advice on creating 2nd account for child

    Hi,
    I have an iTunes account on my single user Mac that I've been using for years. My son just got an iPod and I want to set up an account for him to be able to download music, movies, apps etc for his use. Is this possible with only a single user account system or do I need to set up a login account for him too? I want to be able to set limits for him too like dollar limits per month, movie rating limits (PG) etc. I see where I can set rating limits for my account but I don't see how those will change when he uses the system.
    Any advice will be appreciated.

    I would suggest you set him up his own user account in Mac OS X. That will be a lot less fuss, and you can use the Parental Controls in Mac OS X and iTunes in his account to control what he can access without having to limit your own use.
    To give him a dollar limit in the iTunes Store, set him up his own iTunes Store account and either buy him prepaid iTunes cards or gift certificates or set him up an allowance. For more information on these options, see:
    http://www.apple.com/itunes/tutorials/#store-giftcertificates
    Regards.

  • I need advice on creating SubVIs

    Hi all,
    My code is getting bulky and I have created SubVIs to handle certain tasks. Here is what the code does: take in multiple data file paths from the user, and generate
    data summary tables, and lots of plots (table and plot formats controlled by property nodes) and place objects (tables and formats) on different tabs of a control tab on the FP.
    Here is what I need help with:
    1. Is it a good idea to feed file paths to inputs of a SubVI? The code reads 2D numeric data from data files using Read from Spreadsheet File.vi.
    2. Should I make the input of my SubVI the actual 2D data input instead of file path?
    3. Does it make sense to have graphs, charts, etc. in a SubVI? This is how I have them right now (also feeding references to these plots into the SubVI), but someone suggested that I shouldn't do that.
    For my plots, the legend, X-axis label, and Y-axis lable are read automatically from the file name and updated through property nodes, which is why my SubVI takes in file paths.
    Does it make sense to generate a cluster of properties and feed that into my SubVI?
    Any other thoughts?

    murchak wrote:
    Hi all,
    My code is getting bulky and I have created SubVIs to handle certain tasks. Here is what the code does: take in multiple data file paths from the user, and generate
    data summary tables, and lots of plots (table and plot formats controlled by property nodes) and place objects (tables and formats) on different tabs of a control tab on the FP.
    Here is what I need help with:
    1. Is it a good idea to feed file paths to inputs of a SubVI? The code reads 2D numeric data from data files using Read from Spreadsheet File.vi.
    Sure, i do that all the time.
    2. Should I make the input of my SubVI the actual 2D data input instead of file path?
    Why not, make a 2nd sub-vi which uses the data inputs inside the #1 subvi.
    3. Does it make sense to have graphs, charts, etc. in a SubVI? This is how I have them right now (also feeding references to these plots into the SubVI), but someone suggested that I shouldn't do that.
    This is 2 different issues. Having graphs inside a sub-vi is ok for debugging purposes, if never shown they should have no effect later on. Feeding references is a way to update graphs in another VI (presumably main), but i'd recommend returning the data array to main and simply feed the graph there instead.
    For my plots, the legend, X-axis label, and Y-axis lable are read automatically from the file name and updated through property nodes, which is why my SubVI takes in file paths.
    Does it make sense to generate a cluster of properties and feed that into my SubVI?
    3 string inputs are fine. You'll also need the graph ref. I'd make a state or event in the main of it instead.
    Any other thoughts?
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • I need advice on creating streaming video applications in FMIS

    Hello all,
    I have gone through Tom Green's helpful tutorials on streaming from the vod folder (FMS Developer) and using his application to stream from the applications folder (FMIS).
    What I need to know now, is what to do to create a player for use on my video page. Just when I think I have this figured out a little more, I end up stymied.
    For example, I just downloaded and read through the 22-page intro to the RealEyes REOPS player. This isn't the first time I have researched this player, but every time I start reading up on it, it feels as though it's making sense, then the treatment drifts straight into software engineer-speak and I'm left thinking this will be impossible to grasp.
    I researched Strobe. Yet another exceedingly-difficult bit of information to understand when you're a beginner. Ultimately leaving me staring at the screen wondering what I just read.
    I have a full, licensed copy of FMIS running on my web server and I want to stream video from it. I really don't care if the player is flashy or not...I want the viewer to enjoy the video, that's what is important. I don't need closed captioning, I just want a full-screen capable player. Something basic that will play SH and h.264 clips. If one player can't be made to do both, I'll need one for each.
    I'm self-taught PHP and database design, self-taught web designer, I have tackled big projects before and I am undaunted by this one...I JUST need some idea where to go.
    For instance, when forst prompted to read Tom Green's tutorials, they made no sense to me. It took helpful posts from all of you on this forum to get me to the 'aha!' moments that allowed me to appreciate Tom's tutorials. I need that 'aha!' with regards to buildign applications. The one Tom uses in his Part 3, Beginner's guide to using ActionScript 3.0 with Flash Media Server 3.5 tutorial is cool, but it's not a player. I know enough to change the RTMP path and video filename to make this thing stream my files from my server, but there's another gap in what I want to do and what I need to know to head in that direction.
    Any and all input will be absolutely appreciated.
    Sincerely,
    wordman

    A few useful links:
    http://www.fmsguru.com/showtutorial.cfm?tutorialID=3
    http://www.fmsguru.com/showtutorial.cfm?tutorialID=14
    http://www.fmsguru.com/showtutorial.cfm?tutorialID=20
    And I'll have a new tutorial out soon on transitioning between bitrates of the same video to give the end user a better experience.

  • I Need Advice on Creating a Photo Collage

    My current project requires me to collage a lot of photographs.  This particular client likes to revise every detail.  So illustrator seems like the way to lay things out in my mind. The size of the footprint can change at any given moment so I need to be able to easily move things around.  The images will need lots of filters, drop shadows etc.  I am trying to plan what the best way to tackle this & keep my file size managable.  Any tips or advice is greatly appreciated!

    I use at once some programs, as the best decision always in a combination of opportunities. https://www.adobe.com/ru/products/photoshop.html Photoshop CC http://www.getpaint.net/index.html Get it now (free download): Paint.NET v3.5.10 3.5 MB, English, Chinese (Simplified), French, German, Italian, Japanese, Korean, Portuguese (Brazil), Russian, and Spanish http://www.gimp.org/downloads/ Downloads GIMP for Windows

  • Need Guidance to create a form with Upload,browser and clear button

    Task :1) Browse should open a dialog box window for user to select an excel file on his local machine. Once the name of file is on the ticket item file name, the upload button should load data of this file into a database stage table.
    2) Host being called from forms u .Once it reaches server it is easy to load in DB via forms
    3) File transfer should happen automatically when user presses the button on form the code in the button should make use of host command and fire command to move the file.
    version :-FORMS10g , OS - XP

    Have you tried searching the web?  There are numerous examples of how to read and Excel file into a Form.  Here is just one, for example: WebUtil: How to Read an Excel file into an Oracle Form .  This example can easily be modified to write the file to a table versus displaying it in the form.  Or...you could simply read the file into a base table block and use standard Forms Commit processing to save the data to your table.
    Craig...

  • Need Advice on Creating Multi-Language Menus

    Hello Friends,
    I am working on a documentary project that will contain three languages: English, Spanish, German, and Portuguese. There are two spoken-language audio tracks (English and Spanish) and four subtitle tracks (one for each of the above languages).
    The producer wants four sets of menus as well - something I see as potentially daunting. The disc’s initial menu would ask you to choose a language, and then once that choice is made all subsequent menus would appear in that same language.
    That task is easy enough so far, but with four different sets of menus, what happens when the viewer plays the movie, then presses the "menu" button. How does the DVD know which language menu to return to?
    I assume that something might possibly be done with scripting, but I'm new to this aspect of DVD authoring, so any design advice you could give would be much appreciated. Thanks very much!
    - Jordan
    PowerBook G4   Mac OS X (10.4.3)   2GB "Crucial" Memory

    It is a scripting issue.
    When you select the language on the first menu, make each button go to a script which sets a unique value ionto a GPRM and then sets the audio for the user. When returning to a menu, make the menu button go to a script which reads the value in the GPRM (or uses the audio setting in the player - SPRM1) to go back to the correct set of menus.
    In setting the language from the main menu, use a script like this (assuming the buttons are ordered English, Spanish, German, Portuguese):
    mov GPRM0, SPRM8
    div GPRM0, 1024
    Set System Stream Au(1(English)
    Jump English menu If (GPRM0 = 1)
    Set System Stream Au(1(Spanish)
    Jump Spanish menu If (GPRM0 = 2)
    Set System Stream Au(1(German)
    Jump German Menu If (GPRM0 = 3)
    Set System Stream Au(1(Portuguese)
    Jump Portuguese menu If (GPRM0 = 4)
    This reads the button value the user selected and sets a value accordingly and at the same time sets the correct audio stream. Now, when setting the return to a menu you can use the same value and set up a script like this:
    Jump English menu If (GPRM0 = 1)
    Jump Spanish menu If (GPRM0 = 2)
    Jump German Menu If (GPRM0 = 3)
    Jump Portuguese menu If (GPRM0 = 4)
    You can extend these scripts to get back to the last button on any particular menu as well. These two scripts will be enough to set the audio and get you back to the right menu. If you are using subs as well then it is going to be a case of adding in the relevant lines to activate the correct subtitle... good luck!

  • Need advice on creating ospf abr router

    Hi, I'm studying for the CCNA, and am trying to learn and experiment with OSPF in packet tracer. I am having trouble with setting up a ABR to advertise a summary route for area 0 to another router in area 1. Lets say I have:
    R1:
    router ospf 1
    network 192.168.1.0 0.0.0.255 area 0
    network 192.168.2.0 0.0.0.255 area 0
    network 192.168.3.0 0.0.0.255 area 0
    area 0 range 192.168.0.0 255.255.252.0 <-- my summary route
    ip route 0.0.0.0 0.0.0.0 10.1.1.1
    default-information originate
    R2:
    router ospf 1
    network 10.1.1.0 0.0.0.255
    network 10.1.2.0 0.0.0.255
    network 10.1.3.0 0.0.0.255
    Assuming R1 in area0 is my main network, and I want to advertise my summary route to the area 1 router, what would I have to do?
    I hope that makes sense. Thanks!

    Well I think I've got it now. I think I was over complicating it, by not realizing that a router could easy advertise routes to multiple areas, eg:
    router ospf 1
    net 192.168.1.1 area 0
    net 192.168.2.1 area 0
    net 10.10.10.10 area 1
    net 10.10.20.10 area 1
    etc, and then using the 'area 0 range 192.168.0.0 255.255.252.0
    Also, as I understand it: If you put a default route on an ABR with default-information originate, the route is advertised to both AS's. But if the route is on either of these AS's, you can't do this because a routing loop will occur. Is this correct?
    thanks again

  • Need help to create report with jpeg/gif image

    Hello,
    I need help with creating a form with a special jpeg/gif seal. I never done this Java. Until now, I created all forms with ansi C++ with HP escape characters to draw lines, boxs, and text. This form will contain boxes which is populated with database information read from a text file.
    Since this form contains a special seal on the upper right, I don't think it can be done with old fashion ansi C++. How can I create a form with Java and create it as a simple exe to just print the form to a specified printer.
    Thanks,
    John

    Hi,
    I am creating a form with boxes (lines and text). What is special about this form is that it has an image jpeg or gif at the top right corner. Is is a state department seal. Up to this form, I had used ansi C++ and print out escape HP character to print out the lines, boxes, and text. I have no idea how to print out the image. I am new to JAVA and only 1 class in it. Is there sample code out there to create this type of form with the image? I need a starting point.
    Thanks,
    John

  • IWEB: Creating Membership Forms

    Need help with creating membership forms on my site. I also wanted to have the members listed on the site, something like Facebook for example.
    Any help deeply appreciated.
    Many thanks

    To add custom HTML to iWeb 1.x sites, see Chapter 2 HERE. Or consider using the free, web-based Ning as a "front-end" to your iWeb site — it offers _membership features_.

  • Need advice for deploy adf web fusion application created in Jdev11gTp4

    hello,
    need advice for deploy adf web fusion application created in Jdev11gTp4
    and it will be nice if you have helper sites
    thanks
    greenApple

    Is there something specific in TP4 that you want to use TP4 - as John suggests, it might be an idea to use the full production release (11g). As for resources for information you can check out
    [Jdev Home|http://otn.oracle.com/products/jdev] this page contains links to the developers guides and various how tos etc etc. The follownig page is also useful and is focused more to those who are less familiar with Java
    [JDev for Forms|http://otn.oracle.com/formsdesignerj2ee]
    Hope this helps and maybe if you can be more specific we can better guide you.
    Regards
    Grant

  • Advice on creating a big quote form

    Hi all,
    Been a while since I was last on the forum, but realised I needed some advice when it comes to creating a form a client has asked me to put on their site.
    They want a quote form where there is the potential for up to 190 form fields, and where the data would be best presented to both the user and the client formatted into multiple tables.
    My thinking is leading me to do it either as a customer submitted Web App that notifies administration of the 'quote' where they view the order and click print, or just to do it on a separate PHP server with something like FormTools and then load it via iframe.
    I'd love to still have all the data going through BC, but the current web form builder will be an absolute nightmare for this scenario (especially the lack of formatting ability in form-activated-emails).
    If you have any ideas about how I could achieve something like this I'd love to hear them.

    Hey there,
    First up is to review the form and number of fields. This is always my first step. 99.9% of the time they are to many and it can be greatly refined. First Name Last Name can be Full Name.
    Some can be combined, some are really not needed at all etc.
    Once you done that you can then assess the form. Tables - nope - Tables are for table display data, not formatting websites and forms these days. I do not know why you need a submitted web app form? A normal web form will do fine if your wanting it to go to the administrator, taking payment on that form will create an order if you need that. There is no need to use PHP 3rd party solution, that data would not go into the BC CRM without API work on top.
    Lack of formatting ability on the forms - Yes, but do not issue that data into an auto responder - to much for the person, it is totally not needed. A workflow notification or any system delivering email - That amount of data is just to much, workflows are notifications and should not be used as the central means of consuming the data, that is why you have the admin and the big CRM
    With the web form as well, a good design means it will work well, so you likely wont need the BC multistep form, but that is an available option as well, but like I said, good form design, possibility of tabs etc will make the form work well in terms of the UX.

  • Need help in creating multiple signature forms?

    need help in creating multiple signature forms that can be digitally signed in adobe reader

    Automator gets a bit unweildy when trying to vary things outside of what the actions provide.  Since you are already using an AppeScript in your workflow, might as well do the whole thing:
    set baseFolder to (path to desktop) -- the location to create the folder
    display dialog "Please provide a new folder name:" default answer "test"
    set folderName to text returned of the result
    repeat -- keep repeating until a number is returned
      display dialog "How many subfolders?" default answer "5"
      set theNumber to text returned of the result
        try -- test the result
          set theNumber to theNumber as integer
          exit repeat -- success
        end try
    end repeat
    tell application "Finder"
      try -- make new folder
        set newFolder to (make new folder at baseFolder with properties {name:folderName})
      on error number -48 -- skip errors if the folder is already there
        set newFolder to ((baseFolder as text) & folderName) as alias
      end try
      repeat with X from 1 to theNumber
        try -- make new subfolder
          make new folder at newFolder with properties {name:folderName & X}
        on error number -48 -- skip errors if the folder is already there
        end try
      end repeat
    end tell

Maybe you are looking for

  • Exe created with Report Generation toolkit does not work for all users

    I created a exicutable with the report generation toolkit and it only works with some of my users. I use microsoft 2007 and anyone that has microsoft 2007 my exe works well. Most of my users that have microsoft 2010 are able to use my program as well

  • I have an Nvidia GTX 560, yet 310.19 wont work

    Irritated and baffled by this. This page clearly states that my GTX 560 is supported by 310.19 (as it should...this card isn't that old), yet after installing the new driver and rebooting, Xorg fails to start, and error logs say that the Nvidia kerne

  • Desktop freezes after startup

    I own a new Imac 27inch with Fusion and today the deskytop is frozen i have had to restart several times. When is is frozen the items such as external drives are not visible. i force restart and then when teh external drives are on teh screen everyth

  • My Imac just quit the bluetooth for mouse and keyboard. What do I do?

    today my I mac doesn 't recognize my blue tooth mouse and keyboard. Fortunately I still had USB units for back up. how do I get Imac to do bluetooth again?

  • Post Query Trigger with cursor

    Good afternoon to all of you! I need your help. I create a master detail form. I created also a post quey trigger, inside I wrote the code below. A cursor looks to another table and returns to the form some values i need! declare cursor C1 is select