Dynamic Form Help Needed !!

Hi Guys,
I need a form that has the following how do i code it in
dreamweaver ?
name :
email address :
phone number :
status: item are New, Contacted, Appointment Scheduled, Sold
( This would be a dropdown and depending on what the user chooses
the options below show up )
commission amount (only shows if the status is changed to
"Sold")
Thumbnail Calendar (only shows if Appointment Scheduled is
the status)

Depends on what sort of server side processing you're going
to be using for
your dynamic form...
Do you have that info??
"NYCKIDDbx" <[email protected]> wrote in
message
news:fmip1k$rhv$[email protected]..
> Hi Guys,
>
> I need a form that has the following :
>
> name :
> email address :
> phone number :
> status: item are New, Contacted, Appointment Scheduled,
Sold ( This would
> be a
> dropdown and depending on what the user chooses the
options below show
> up )
> commission amount (only shows if the status is changed
to "Sold")
> Thumbnail Calendar (only shows if Appointment Scheduled
is the
> status)
>

Similar Messages

  • Basic form help needed

    I am new to Dreamweaver 8 (but have worked with simple html a
    quite a bit) and am working on building a, hopefully, simple
    prototype for a project. What I need to do is collect user-entered
    text and user-selected dropdown box data on one page and send it to
    another for presentation there. After looking at the Help screens,
    I looked at using Session variables and it seems that is the best
    way to pass the data. Where I am stuck is in the (from Help
    Contents) Making Pages Dynamic - Creating Forms - Creating HTML
    forms help. They first say to, in step 2, Select Insert > Form
    (which doesn't do anything - you have to click another option,
    which I figured meant Form again). Then, in step 3, they say to
    "Specify the page or script that will process the form data." by
    selecting the file in the Action box in Properties. I don't have a
    file to "process the form data" and don't really know what they are
    talking about. Help!
    I originally (before I reverted to using Help) set it up with
    Insert->Form->Text Field text entry boxes, figuring this was
    a Form field that could be captured and passed on. Right? Wrong? I
    guess I thought the method would be to define a variable name
    associated with a text input field in one page, then pass it with
    the value to the next page. That is pretty much what it seems
    Session variables do (?), which I discovered when I started looking
    at Help.
    So, was I on the right track for a simple implementation and
    missed the way to capture and transmit the data, or do I need to
    use the Forms->Forms option? If the former, how do I define the
    variable names? If the later...well, I am real confused then. :-)
    Thanks for your help.
    (btw, we do have training material coming - went with
    Dreamweaver for Dummies, Peachpit Macromedia Dreamweaver 8 Hands-On
    Training "dead tree media" and TechRepublic Fast Track Dreamweaver
    8 CBT. Any opinions on those?)

    Session variables as the name suggests are created when a
    user starts a session and last till the session is open. You form
    doesn't really need session variables unless you are carrying form
    data from one page to another and need to keep it associated with
    that specific user such as in shopping cart applications.
    I have never used the dreamweaver insert form, so can't help
    you there. why not code the form yourself, especially since you
    have been using html
    The link below may help.
    http://www.w3schools.com/html/html_forms.asp

  • Dynamic Action-help needed

    Hi ,
    My requirement is in dynamic Action I need to delimit all records in a Subtype of an Infotype and create New record for these records with BEGDA as ENDDA + 1 of the delimited records.
    Iam able to delimit all records in the Subtype but , Iam not able to create new records.
    My code for delimiting is as given below, in T588Z,
    9901 2 06 801 P P9901-SUBTY='2'
    9901 2 06 802 P PSYST-IOPER='MOD'
    9901 2 06 803 P P9901-STATS='X'
    9901 2 06 804 P P9901-PREAS='91'
    9901 2 06 805 F DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901 2 06 806 W P9901-ENDDA=RP50D-ZZDATE3
    9901 2 06 807 I MOD,9901,3
    9901 3 06 808 P SY-UCOMM='UPD'
    9901 3 06 809 F DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901 3 06 810 W P9901-ENDDA=RP50D-ZZDATE3
    The above code is working fine.
    My code for creating new record is as given below, even though the control is oing to the subroutine, INS statement is not working, and hence new record is not getting created.
    9901 3 06 811 P SY-UCOMM='UPD'
    9901 3 06 812 P PSAVE-ENDDA<>P9901-ENDDA
    9901 3 06 813 P P9901-STATS<>'X'
    9901 3 06 814 I INS,9901,3
    9901 3 06 815 F BEGIN_DATE(ZHSRAS_T588Z_9901)
    9901 3 06 816 W P9901-BEGDA=RP50D-ZZDATE3
    9901 3 06 817 W P9901-ENDDA='99991231'
    Kindly help me on this.
    Thanks in Advance

    hi,
    thankyou for all ur valuable replies.
    Time constraint for this custom infotype is 2.
    It is not allowing to create a new subtype record if 1 exists.
    Here scenerio is
    Each Subtype ,ie, Subtp 2 ad 3 has got 4 records each with distinct OBJPS field.
    when STATS field of subtype 2 is changed for any 1 record in Subtype 2, corresponding record in Subtype 3 should get delimited .
    And, rest of the records of Subtype 3 should get created again with new start date.
    The code I have written for this is ,
    9901     2          06     800           *BEG*****DEATH OF WIDOW*****************
    9901     2          06     801     P     P9901-SUBTY='2'
    9901     2          06     802     P     PSYST-IOPER='MOD'
    9901     2          06     803     P     P9901-STATS='X'
    9901     2          06     804     F     DELIMIT_DTE(ZHSRAS_T588Z_9901)
    9901     2          06     805     W     P9901-ENDDA=RP50D-ZZDATE3
    9901     2          06     806     *     ****PSAVE-ENDDA<>P9901-ENDDA
    9901     2          06     807     F     LOCK_REC3(ZHSRAS_T588Z_0015)
    9901     2          06     808     I     <b>MOD,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)</b>
    9901     2          06     812     *     *BEGCREATE NEW REC FOR SURVIVING WIDOWS******
    9901     2          06     813     *     *
    9901     2          06     814     P     P9901-STATS<>'X'
    9901     2          06     815     F     BEGIN_DATE(ZHSRAS_T588Z_9901)
    9901     2          06     816     W     P9901-BEGDA=RP50D-ZZDATE3
    9901     2          06     817     W     P9901-ENDDA='99991231'
    9901     2          06     818     I     <b>COP,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)</b>
    9901     2          06     819     *     *ENDCREATE NEW REC FOR SURVIVING WIDOWS*****
    9901     2          06     830     *     ***END*****DEATH OF WIDOW*****************
    Control is going to all routines, but
    MOD,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA)  and
    COP,9901,3,P9901-OBJPS,(P9901-BEGDA),(P9901-ENDDA) is not working.
    Message was edited by: Shahana Shahul
    Message was edited by: Shahana Shahul

  • Product Specific Form - Help Needed

    I have a client who will be selling firearms and ammunition on a hunting site, along with other hunting products.
    I need to have a form specific for firearms and ammunition products that will be required to be filled out before that product firearm and or ammunition can be added to the cart. The laws in Canada are very strict about purchases of such product on the internet.
    How do I do this or is it even possible to have a form specific to these products pop up when add to cart is clicked?
    Thanks in advance

    Hello river east,
    I'm just spitballing here, but here is one option for this to work.
    Basically you would create a secure zone and if the user isn't signed in they wouldn't see the Add to Cart button.
    The js would look like this - http://jsfiddle.net/chaddidthis/uDmXj/1/
    As a part of signing up for the secure zone they have to accept the gun and ammo purchasing terms. You could have the link to the form on the large product page, sends them to either log in or sign up via the form they need to fill out. After then fill out the form they are sent back a page sending them back into the large product view they were on, and since they are signed in now the product will be able to add to cart.
    Maybe this will spark others to add on to this, but that is pretty much the only way I could think to accomplish the desired results.
    Hope it helps,
    Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • UCM Web Form, help needed

    Hi,
    I just have started working on Oracle UCM. I am majorly stuck with web form (HCSF).
    Below is the form code,
    <form name="CommentsPageForm" method="POST" action="<!--$HttpCgiPath-->">
              <input type=hidden name="IdcService" value="SUBMIT_HTML_FORM">
              <input type=hidden name="dID" value="<!--$SourceID-->">
              <input type="hidden" name="RevisionSelectionMethod" value="Latest">
              <input type=hidden name="FormDocTitleScript" value="<!--$UserName--><!--$formTitle-->">
              <input type="hidden" name="RedirectURL" value="<!--$HttpCgiPath-->?IdcService=GET_FILE&dDocName=<!--$ref:dDocName-->&Rendition=Web&RevisionSelectionMethod=Latest">
    <!-- All input fields and conditional code -->
    </form>
    If I keep the dID input field then it throws an error message like following
    Content Server Request Failed
    Unable to submit HTML form. The HTML form is not the latest revision.
    If I remove the dID input field then it throws an error message like following
    Unable to execute service (null) and function computeDocID.
    (System Error: Either dID must be specified or RevisionSelectionMethod must not force the choice of a dID.)
    I have tried to remove and add other input fields but nothing has worked.
    Please help me out with this. Please point out where I made the mistake. I copied
    codepieces from Bex Huff's book, that too had same error.
    Regards
    Udita

    hi All,
    I'm facing the same issue, I have a soap request which will update the metadata field on the service call.
    The request url is coded as
    var requestUrl = httpCgiPath + "?IdcService=UPDATE_DOCINFO" + "&dID=" + datafileID +"&dDocName=" + datafileDocName + "&xComments=" + inputComments.value + "&dDocTitle=" + inputTitle.value + &idcToken=#active.IdcToken" + "&IsSoap=1";
    When I fetch the dynamic url and tried in browser then I get following error:
    Content Server Request Failed
    Unable to update the field. The authorization token is invalid. It has either expired or is not appropriate for the current request.
    You may need to reload an earlier page in order to proceed.
    See I have added idcToken as you guys suggested still token issue :(
    Any pointer for this issue will be helpful.
    Thanks

  • Urgent Form Help Needed

    I am trying to fill out a pdf form created by the Government of Canada and when I enter text in to the one of the text fields it does not keep the text there the text field merges with the box above.  The form is available here: http://www.international.gc.ca/development-developpement/assets/pdfs/partners-partenaires/ calls-appels/iyip-psij-form-2014-eng.pdf . The fields I am having the problem with is 1.1 Internship Details which when I put in the answer (1200 words) it half merges with the text box above 1.0 Rationale for Initiative.
    I have downloaded a number of versions of the file (on a number of pcs) and they all have the same problem. There are problems downloading the form in Chrome and some of the other web browsers but the newest version of IE works.  I need to know if I am doing something wrong or if there is a problem with the form itself. I'm using Adobe Reader XI to fill the form and it was created using LiveCycle Forms 9.0. The creator of the form is highly unlikely to offer any assistance unless I can prove the problem is on their end. This is an RFP due tomorrow and my job kinda depends on it. HELP!

    Hi Erin,
    I've downloaded the form and tried to fill it in myself. I'm able to paste in 700 words (just under 4000 characters) without issue, but anything above that produces the error that you describe. So, it seems to me that the form designer may have imposed a limit on how many characters can be entered into that form field.
    I hope that helps....
    Best,
    Sara

  • Form help needed- creating a PRIORITY FIELD

    I cannot figure this out as i have looked all over the
    internet to no avail.
    I have a 30 question coldfusion flash form.
    I would like the user to select their top eight questions by
    having a drop menu labeled 1 thru 8 beside each question.
    The priority number can only be chosen once.
    Help please...

    zoemayne wrote:
    java:26: cannot find symbol
    symbol  : method add(java.lang.String)
    location: class Dictionary
    add(toAdd);this is in the dictionary class
    generic messageThat's because there is no add(...) method in your Dictionary class: the add(...) method is in your WordList class.
    To answer your next question "+how do I add things to my list then?+": Well, you need to create an instance of your WordList class and call the add(...) method on that instance.
    Here's an example of instantiating an object and invoking a method on that instance:
    Integer i = new Integer(6); // create an instance of Integer
    System.out.println(i.toString()); // call it's toString() method and display it on the "stdout"

  • Forms help needed

    I have several forms on my website and I need each to send
    the form to two email address, and also send back an auto response
    when email is sent out. Also after submit button it says your
    request has been submitted and then after about 8 seconds it takes
    them back to the home page.
    How do I do this? I have the forms done but need help with
    the rest above (two emails,auto respond,ect.)
    Thanks

    There are only two ways to process form data -
    1. Use mailto:[email protected] as the action of the form
    2. Use a server-side scripting method to a) harvest the
    form's data, b)
    process it in some manner, e.g., enter it into a database, c)
    formulate and
    send an email to one or more email recipients, and d)
    redirect the visitor
    to some ending page
    Method 1 is quite simple, and is also the least reliable. It
    depends both
    on your visitor having an email client already installed on
    their computer -
    this eliminates public computers, or home users without email
    clients
    installed (more and more it seems) - and on the installed
    email client
    responding to
    the mailto call. It is not possible to use this method *and*
    send the
    visitor to a
    thank you page as well.
    Method 2a is the preferred method, since it eliminates the
    problems of
    method
    1, but it means that you have to grapple with
    server-scripting somehow (ASP,
    CF, PHP, perl, etc.).
    Method 2b would be to use some third-party form processing,
    like
    http://www.bebosoft.com/products/formstogo/.
    You would have to decide which of these methods is best for
    your needs,
    but if it's Method 2a, then start by asking your host what
    they provide for
    form
    processing. If it's 2b, then read their FAQ/instructions
    carefully.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "568jfe56nfg" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    > I have several forms on my website and I need each to
    send the form to
    > two
    > email address, and also send back an auto response when
    email is sent out.
    > Also
    > after submit button it says your request has been
    submitted and then after
    > about 8 seconds it takes them back to the home page.
    >
    > How do I do this? I have the forms done but need help
    with the rest above
    > (two
    > emails,auto respond,ect.)
    >
    > Thanks
    >

  • Creating a byte Array dynamically.Urgent Help needed.

    Hi there,
    I need to create a byte Array with the values
    derived from the array and then am passing this byte array
    to a method.
    Example :
    public static void main(String[] args) throws IOException {
    char chars[] = {'a','j','a','y'};
    byte[] b = {
    (byte) chars[0],(byte) chars[1],(byte) chars[2],(byte) chars[3],
    //** Send name to a server.
    sendRequest(b);
    This is all right.
    But here I know the size of the character array chars.
    If it had more than 4 characters or less than 4,
    is there a way to create the byte array dynamically based on the values in the character array?
    Please can some one help me with creating a byte array on the fly?
    Has anyone understood my question please?
    A response is much much appreciated.

    The actual problem is this.
    The byte array already has some fixed values to it
    and i need to append the values of the character array
    to this byte array
    ie
    char chars[] = {'a','j','a','y'};
    byte b[] = {
    // Predefined values
    (byte) 0x01, (byte) 0x7E, (byte)0x03
    // I have to add the values from the array here
    (byte) chars[0], (byte) chars[1]....
    How can I add these values.? The size of the character array
    can vary

  • Checkbox in tabular form - help needed

    I'm trying to build a tabular form, with a checkbox for a field that can have value 'Y' or 'N'. Adding the checkbox is no problem, with the htmldb_item.checkbox API.
    However, processing it is.
    On this forum I found a way to process the checkboxes, by looping through all the records (with the help of htmldb_item.hidden in which the id is stored) and reading the value from the checkboxes and updating the column if the checkbox is checked. (see Re: Report with updateable checkbox)
    however, as soon as I add a htmldb_item.hidden item, I receive the following error when I submit the tabular form to the Multi Row Update process:
    "Error in mru internal routine: ORA-20001: Error in MRU: row= 1, ORA-20001: ORA-20001: Current version of data in database has changed since user initiated update process. "
    My query:
    Select id
    ,htmldb_item.hidden(1,id)
    ,htmldb_item.checkbox(2,id, decode(field, 'Y', 'CHECKED', NULL))
    from table
    What am I doing wrong?
    is there a better way to process a tabular form with checkboxes?
    Or should I process all the rows manually by updating every record even if it hasn't changed (with a loop through all the records)?

    Tonnie, did you ever get an answer to this question?
    Michael Cunningham

  • Dynamic Calendar help needed

    I am trying to convert a static events calendar to dynamic
    and I have run
    into a couple of snags that I don't seem to be able to figure
    out (darned
    Newbies!)
    The big problem that I am having is to have the Month/Year
    header display
    only one time for all the events in that month.
    The second problem is displaying a range of dates for one
    event (...Sept
    9-12)
    Example:
    September 2006
    Sept 1 - event 1, location
    Sept 9-12 - event 2, location
    Sept 14-16 - event 3, location
    October 2006
    Oct 3-4 - event 1, location
    Oct 23 - event 2, location
    This is the type of calendar I'm trying to dynamisize looks
    like this one
    http://internationalsoaringeaglesministries.org/calendar.htm
    It is not loaded with all sorts of dates so I chose to
    display only dates
    with events on them.
    Any help would be much appreciated!!
    Thanks
    Dave

    I am trying to convert a static events calendar to dynamic
    and I have run
    into a couple of snags that I don't seem to be able to figure
    out (darned
    Newbies!)
    The big problem that I am having is to have the Month/Year
    header display
    only one time for all the events in that month.
    The second problem is displaying a range of dates for one
    event (...Sept
    9-12)
    Example:
    September 2006
    Sept 1 - event 1, location
    Sept 9-12 - event 2, location
    Sept 14-16 - event 3, location
    October 2006
    Oct 3-4 - event 1, location
    Oct 23 - event 2, location
    This is the type of calendar I'm trying to dynamisize looks
    like this one
    http://internationalsoaringeaglesministries.org/calendar.htm
    It is not loaded with all sorts of dates so I chose to
    display only dates
    with events on them.
    Any help would be much appreciated!!
    Thanks
    Dave

  • Re: Including Applet in JSP with Dynamic input| Help needed

    Hi All,
    We are into a project in Oracle Portal Server where in we want to embed a result of a standalone application in Portal page.
    We can do that once we can embed the result of the standalone application which generates applet based on the input it gets from the current application's database.
    If it was static we could have used jsp:plugin but, it fails in our case!
    We are clueless as to how to embed an applet which will pick up the data dynamically.
    Can anyone of you help me in this regard?
    Thanks & Regards
    Arthi

    Hi Arthi,
    I think this might help you to get an idea why jsp:plugin tag does not allow for dynamically called applets.
    <jsp:plugin type=applet height="100%" width="100%"
    archive="myjarfile.jar,myotherjar.jar"
    codebase="/applets"
    code="com.foo.MyApplet" >
    <jsp:params>
    <jsp:param name="enableDebug" value="true" />
    </jsp:params>
    <jsp:fallback>
    Your browser does not support applets.
    </jsp:fallback>
    </jsp:plugin>
    The plugin example illustrates a <html> uniform way of embedding applets in a web page. Before the advent of the <OBJECT> tag, there was no common way of embedding applets. This tag is poorly designed and hopefully future specs will allow for dynamic attributes (height="${param.height}", code="${chart}", etc) and dynamic parameters. Currently, the jsp:plugin tag does not allow for dynamically called applets. For example, if you have a charting applet that requires the data points to be passed in as parameters, you can't use jsp:params unless the number of data points are constant. You can't, for example, loop through a ResultSet to create the jsp:param tags. You have to hand code each jsp:param tag. Each of those jsp:param tags however can have a dynamic name and a dynamic value.
    I think you can get better information if you look in to the below link
    http://pdf.coreservlets.com/CSAJSP-Chapter12.pdf
    Many Thanks,
    Ramesh.

  • Dynamic Reports Help Needed

    Could someone please point me in the direction of a tutorial
    or a book on how to create a hyperlink which will dynamically run
    an Access report and display in a web page? None of the reference
    books I own cover how to do this. I know this is pretty darn basic
    but I've never done this particular task before. can someone
    help??

    Could someone please point me in the direction of a tutorial
    or a book on how to create a hyperlink which will dynamically run
    an Access report and display in a web page? None of the reference
    books I own cover how to do this. I know this is pretty darn basic
    but I've never done this particular task before. can someone
    help??

  • Dynamic VTI help needed!

    Hi all,
    I currently have an "ordinary" site-to-site VPN with static crypto maps at the spokes and a dynamic crypto map at the headend.
    What I'd like to do is replace this with static VTIs at the spokes and a dynamic VTI at the headend. I don't need any of the "flash" of DMVPN, just as straight a swap as I can possibly get.
    The static VTIs are no problem, but I'm really confused about how to set up the dynamic VTI at the headend. I don't see how the DVTI gets associated with an interface, and which IP address the spoke should use to initiate the tunnel.
    Could anybody please post a simple (but complete) config for a DVTI hub and a SVTI spoke?
    many thanks,
    alec

    Configuring the Cisco IOS? Server Load Balancer (SLB) feature to distribute large numbers of IP Security (IPsec) tunnels onto a Cisco 7200/7301 IPsec server farm. The server farm hubs are configured with dynamic Virtual Tunnel Interface (VTI) while the remote spokes can be configured using VTI or crypto maps (supporting single proxy).
    http://www.cisco.com/en/US/products/ps6635/products_white_paper0900aecd8045b552.shtml

  • Dynamic form help?

    Hi All,
    I am not very familiar with LiveCycle so I maybe using the product completely wrong (it came with my 'suite')....
    I am trying to create an online form that provides different options for different users based on the way they answer specific questions....
    To be more clear:
    First user:
          DropDown menu (Choice A, Choice B, Choice C) ----> User selects Choice A
          Check box's offering (Option 1, Option 2, Option 3)
    Second User:
          DropDown menu (Choice A, Choice B, Choice C) ----> User selects Choice B
          Check box's offering (Option 4, Option 5, Option 6)
    And so on...
    Is this possible with LiveCycle?

    It is possible. There are different scenarios and different solutions. For example,
    1) Captions, like data, can be populated dynamically when data is merged with a form. Go to Tools > Options > Data Binding and select 'Show Dynamic Properties'. You then view the properties for an object, go to the 'Field' tab, and click on 'Caption' to display the dynamic properties and data binding for the caption. A sample for caption binding was posted here last week.
    2) Traditionally, when data is merged with a form template the PDF that is rendered can change based upon the contents of the data. In your case, there would be a subform for the first user and a different subform for the second user. Based upon the value(s) of the incoming data you would display one or the other.
    3) Based upon some criteria in the form you can dynamically show and hide different objects.
    4) Similar to point 3 you can dynamically change captions based upon a rule in the form. The attached PDF demonstrates a drop-down which drives the captions displayed for 3 checkboxes. If you select 'B' from the drop-down the checkbox captions change. If you select 'A' the captions reset.
    So it is possible...but it depends on the problem you are trying to solve.
    Steve

Maybe you are looking for

  • How can i convert items of vbap into horizontal in internal table ?

    Hi, Experts, I want to display items of vbap into horizontal instead of vertical using a 'reuse_alv_grid_display' fm  ex: vbeln       posnr           netwr          waerk 5680          10              120             dol 5680          20             

  • Infotype Overview

    We are using report RPLINFC0 to display all the infotypes maintained against an employee. Client wants this report for a range of Personnel numbers. Is there any standard report which displays all the infotypes maintained against a range of Personnel

  • Deafult Printer won't "stick" XEROX Phaser 7760GX

    When I set the XEROX Phaser 7760GX IP networked printer as default in system settings, it has reverted to "last used" next time I i look. I have downloaded and installed new printdriver since upgrading to Leopard and it prints fine but won't stick. I

  • Email - Connection to server failed

    Hey, I've been receiving emails (Yahoo) on my iPhone until last night. A message "connection to the server failed" pops up whenever I attempt to check emails. I've tried the following to fix this: 1) Rebooted iPhone 2) retyped password into iPhone 3)

  • Does Keynote 6.5 have a ruler option for Pixels?

    I started using Keynote for wireframes last year. Liked it way better than Ormigraffle  I upgraded a few weeks ago and there doesn't seem to be a way to change the rulers and measurements to pixels anymore. Am I missing something? I can't make wirefr