Is it possible to add an 'Upload Image' option to a form in Muse CC 2014

Hi,
Im building a website via Muse and BC for a movie star client who has images of herself tattooed by ardent fans. Basically, the website is a gallery for fans showcasing the very best in inked images of herself on their skin. On the contact form in Muse, I'd like to add an option somewhere for the client to upload an image of their own tattoo to be included in the gallery (which will be added/edited manually in PS).
Is this possible without too much xtra code? Or, will I need a single page where folks can upload their image to us which will include some sort of widget? I'd like to be able to manage it though without giving out an email address if possible?
Any help most appreciated.
Cheers

Hi Rohit, thank you for that.
I do have a FormsCentral account and notice on a tutorial I found on AdobeTV, that you can specify file types. This is something I'd like to be able to do as they will be images so PSD, png, jpg etc. But just looking over on BC I see that you can add 'Attach File 250mb limit' to a form (as you advised) but I can't see where you can limit to type? Is it in there?
Finally, will the image be uploaded to the BC server-side (if I use BC form creation method and not FormsCentral) in some type of assets folder or, will the form simply send any clients uploaded images to the specified email account within the form?
Whoops, final finally: Do you think that it is better to use FormsCentral for this or BC? I want the page to be customised so the form sits on some b-ground artwork. The client has a famous image where she is holding a burning card invite. I have already used this and overlaid a contact form in Muse which has worked really well, so I want to create a (hidden from menu) uploaded page looking exactly the same and this page will be linked directly from the other Contact page, driving any fans there who wish to then upload an image rather than just send a general contact. I hope that makes sense?
I guess what Im trying to find out is wether FormsCentral data gets fed back to BC in the same way a BC-created form would be seen in the dashboard area.
Thanks Rohit

Similar Messages

  • Is it possible to add a barcode image generator API on HTMLDB that support

    Hi All,
    Currently we create Barcodes images using a Java solution - open source API called Barbeque.barcode.servlet. Is it possible to add a barcode image generator API on HTMLDB that support multiple formats?
    Our current process:
    All jobs created in our system require a barcode which is then printed onto a cover sheet for each job (refer example). We also currently have individual barcodes printed on a single feed barcode printer for attaching to jobs sheets. We also print A4 sheets of barcodes with the Field Technican id number on that we sent out to them.
    Thanks in advacne
    Manoj

    It certainly is possible to call Java from PL/SQL and so therefore from APEX.
    The process is fairly well documented online and there's a well cited example of calling Apache FOP within these forums.
    You may however need to do a little work to wrap your Java library using static methods in order to do this.
    Regards
    Ben

  • Upload image in an html form to be emailed

    Hi everyone. Here is another one of my last minute, hurry up and wait requests.
    I have to create a form that will enable the viewer to upload an image and send the
    form on its way to a predetermined email address. This is for a contest starting tomorrow.
    The form has been made and works. The only thing I haven't worked out yet is the "upload image"
    feature. This is absolutely necessary and must be included. I have tested this several times and all the data
    comes thru. What I need is for an image to go along with the form fields and appear when the email is opened.
    With all due respect I do not have a very long learning curve here so if anyone can just provide
    me with the code, both html and php, instruct me exactly where to place it I would be
    extremely appreciative.
    here is the temporary link:
    Sirui/Argraph Wildlife-Landscape Photo Contest
    The image upload button will be in between the two horizontal rules towards the bottom of the form;
    above the submit/reset buttons.
    Thanks in advance as always.
    -Cliff-

    Below is the code and php for your complete form together with the file upload field and code. How you style the form and validate the form fields (if your going to) is down to you. Change the email address marked in red to that of the recipient you want the information to go to.
    You need to copy all the code and save it with a php extension so instead of:
    SiruiWildlifePhotoContestEntryForm.html
    This:
    SiruiWildlifePhotoContestEntryForm.php
    Obvioulsy being php it only works if the file is on a php enabled server so if you dont have a local testing server you need to upload it to your remote server before it will work.
    <?php
    if(isset($_POST['Submit']))
    //The form has been submitted, prep a nice thank you message
    $output = '<h1>Thanks for your file and message!</h1>';
    //Set the form flag to no display (cheap way!)
    $flags = 'style="display:none;"';
    //Deal with the email
    $to = 'yourEmailAddress.com';
    $subject = 'Competition Entry';
    $LastName = ($_POST['LastName']);
    $FirstName = ($_POST['FirstName']);
    $Email = ($_POST['Email']);
    $Phone = ($_POST['Phone']);
    $Address1 = ($_POST['Address1']);
    $Address2 = ($_POST['Address2']);
    $City = ($_POST['City']);
    $State = ($_POST['State']);
    $Zip = ($_POST['Zip']);
    $Dealer = ($_POST['Dealer']);
    $TripodMonopodHead = ($_POST['TripodMonopodHead']);
    $CameraLens = ($_POST['CameraLens']);
    $ImageEntry = ($_POST['ImageEntry']);
    $DepositWhere = ($_POST['DepositWhere']);
    $YouTubePage = ($_POST['YouTubePage']);
    $attachment = chunk_split(base64_encode(file_get_contents($_FILES['file']['tmp_name'])));
    $filename = $_FILES['file']['name'];
    $boundary =md5(date('r', time()));
    $headers = "From: [email protected]\r\nReply-To: [email protected]";
    $headers .= "\r\nMIME-Version: 1.0\r\nContent-Type: multipart/mixed; boundary=\"_1_$boundary\"";
    $message = "Last Name: $LastName\n\n";
    $message .= "First Name: $FirstName\n\n";
    $message .= "Email: $Email\n\n";
    $message .= "Phone: $Phone\n\n";
    $message .= "Address1: $Address1\n\n";
    $message .= "Address2: $Address2\n\n";
    $message .= "City: $City\n\n";
    $message .= "State: $State\n\n";
    $message .= "Zip: $Zip\n\n";
    $message .= "Dealer: $Dealer\n\n";
    $message .= "Tripod Monopod Head: $TripodMonopodHead\n\n";
    $message .= "Camera Lens: $CameraLens\n\n";
    $message .= "Deposit Where: $DepositWhere\n\n";
    $message .= "You Tube Page: $YouTubePage\n\n";
    $message.="This is a multi-part message in MIME format.
    --_1_$boundary
    Content-Type: multipart/alternative; boundary=\"_2_$boundary\"
    --_2_$boundary
    Content-Type: text/plain; charset=\"iso-8859-1\"
    Content-Transfer-Encoding: 7bit
    $message
    --_2_$boundary--
    --_1_$boundary
    Content-Type: application/octet-stream; name=\"$filename\"
    Content-Transfer-Encoding: base64
    Content-Disposition: attachment
    $attachment
    --_1_$boundary--";
    mail($to, $subject, $message, $headers);
    ?>
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="UTF-8">
    <title>MailFile</title>
    </head>
    <body>
    <?php echo $output; ?>
    <form enctype="multipart/form-data" action="<?php echo $_SERVER['PHP_SELF'];?>" method="post" <?php echo $flags;?>>
    <p><label for="LastName" class="barheader">Last Name:</label>
    <input name="LastName" type="text" id="LastName" size="28" maxlength="50" />
    </p>
    <p><label for="FirstName" class="barheader">First Name:</label>
    <input name="FirstName" type="text" id="FirstName" size="28" maxlength="50" />
    </p>
    <p><label for="Email" class="barheader">Email:</label>
    <input name="Email" type="text" id="Email" size="50" maxlength="75" />
    </p>
    <p><label for="Phone" class="barheader">Phone:</label>
    <input name="Phone" type="text" id="Phone" size="12" maxlength="15" />
    </p>
    <p><label for="Address1" class="barheader">Address 1:</label>
    <input name="Address1" type="text" id="Address1" size="75" maxlength="100" />
    </p>
    <p><label for="Address2" class="barheader">Address 2:</label>
    <input name="Address2" type="text" id="Address2" size="75" maxlength="100" />
    </p>
    <p><label for="City" class="barheader">City:</label>
    <input name="City" type="text" id="City" size="33" />
    </p>
    <p><label for="State"><span class="barheader">State:</span></label>
    <input name="State" type="text" id="State" size="2" maxlength="2" />
    </p>
    <p><label for="Zip" class="barheader">Zip:</label>
    <input name="Zip" type="text" id="Zip" size="10" maxlength="10" />
    </p><label for="Dealer" class="barheader">Dealer:</label>
    <input name="Dealer" type="text" id="Dealer" size="100" maxlength="150" />
    </p>
    <p><label for="Tripod/Monopod/Head Used:" class="barheader">Tripod/Monopod/Head Used:</label>
    <input name="TripodMonopodHead" type="text" id="Tripod/Monopod/Head Used:" size="75" maxlength="100" />
    </p>
    <p><label for="YouTubePage" class="barheader">Camera/Lens Used:</label>
    <input name="CameraLens" type="text" id="Camera/Lens Used:" size="75" maxlength="100" />
    </p>
    <p><label for="Image/Entry:" class="barheader">Image/Entry #:</label>
    <input name="ImageEntry" type="text" id="Image/Entry:" size="25" maxlength="25" />
    </p>
    <p></p>Where will you deposit your entry?:</p>
    <p><label for="DepositWhere"></label>
    <input name="DepositWhere" type="text" id="DepositWhere:" size="20" maxlength="50" />
    </p>
    <p><label for="YouTubePage" class="barheader">For YouTube Videos: URL to your YouTube page:</label>
    <input name="YouTubePage" type="text" id="YouTubePage" size="50" maxlength="100" />
    </p>
    <p>
    <label for="file">Attach File</label> <input type="file" name="file" id="file"></p>
    <input type="submit" name="Submit" id="Submit" value="Submit" />
    <input type="reset" name="Reset" id="Reset" value="Reset" />
    </form>
    </body>
    </html>

  • Is it possible to add text or image or gallery as a div on upfront position with "close"  button?

    I making a webdoc parallax site. I need add text like a div upfront other content and I need to possibility to hide it by click. Is it posible?

    Can you provide an example which will give us the exact idea as what you are trying to achieve.
    Thanks,
    Sanjit

  • Is it possible to add a horizontal slider to a webpage within a Muse site?

    My website is 1600 px wide, and if the user has set his browser width narrower than that, or his screen resolution is lower than 1600 px wide, he will obviously not see all the content. Of course, the browser's scrollbar will show him that there is more content to the right, but the browser scrollbar is not very much in your face, so I would like to add a slider at the bottom of my page that will be more visible and easily let the user know that he will see more content if he scrolls right. I know that jQuery can generate such a slider        http://api.jqueryui.com/slider/ , but I would like to know if the same can be done within Muse.

    Thanks for posting.
    You can achieve this by using slid show. Add image to the slide and there is a text box at the bottom of the slideshow box, which you can drag and place on the image within the frame. Please refer the screenshot below.
    Kind Regards
    Aishvarya Rastogi

  • Is it possible to add a "Thank you for your submission" using Adobe Muse Forms

    Instead of the form resetting I was wondering if it were possible for a message to appear.
    Sometimes the words Form Received appear next to the Submit button, can this be edited?
    Penny

    Hi Penny,
    You have a couple options:
    1 - You can indeed edit the text that appears next to the button using the states panel and then just edit the text.
    2 - If you need to add more info that such as going to a full thank you page with perhaps a download or some other information; you can select another page to be redirected to after submitting in the form properties panel.

  • Is it possible to add a community calendar to a website created in Muse & hosted on BC without resorting to a 3rd party widget?

    I need to add a searchable community calendar or events list to a website created in Muse & hosted on BC.

    Many thanks, but it's not quite what I'm after.
    I need something that let's a 3rd party submit an event which is then submitted for approval by an admin.
    I have found this which at the moment is in free beta.
    Tockify | Create a Web Calendar or Event List for your community

  • Problem to add Icon to menu option in Oracle forms

    Hello experts,
                          i am using Oracle fussion middleware 11.1.2 (oracle forms 11g) at windows 7.
    I am trying to make mu custom menu module with Icon images in oracle forms.I have done set property palette with
    Icon in Menu =Yes
    Icon file name=home.
    Here home.ico is my icon to corresponding menu item.
    But when I run the form having this menu,the menu is shown but there is no any icon,Please give me solution for that how can I add icons in menus.
    Thank You
    regards
    Aaditya.

    Hi,
    You can define a Form Function filling the basic information and
    HTML call Set as OracleOasis.RunDiscoverer. You can even define Paramters during the form function registration. With this definition you will able to create a link to a Discoverer workbook that will automatically open Discoverer Plus or Viewer to display the workbook using Apps security.
    Please refer to the following Metalink Note for more details:
    278095.1- How to Create a Link to a Discoverer Workbook in Apps11i
    Hope This helps
    - Sanjeev

  • Image Upload option for Form within Muse CC

    Hi, Rohit776 suggested I post this question here for a feature in Muse:
    Hi,
    Im building a website via Muse and BC for a movie star client who has images of herself tattooed by ardent fans. Basically, the website is a gallery for fans showcasing the very best in inked images of herself on their skin. On the contact form in Muse, I'd like to add an option somewhere for the client to upload an image of their own tattoo to be included in the gallery (which will be added/edited manually in PS).
    Is this possible without too much xtra code? Or, will I need a single page where folks can upload their image to us which will include some sort of widget? I'd like to be able to manage it though without giving out an email address if possible?
    Any help most appreciated.
    Cheers
    [edit] And here is the original discussion with Rohit's great advice and my completion using FormsCentral. Re: Is it possible to add an 'Upload Image' option to a form in Muse CC 2014

    Hi Rohit, thank you for that.
    I do have a FormsCentral account and notice on a tutorial I found on AdobeTV, that you can specify file types. This is something I'd like to be able to do as they will be images so PSD, png, jpg etc. But just looking over on BC I see that you can add 'Attach File 250mb limit' to a form (as you advised) but I can't see where you can limit to type? Is it in there?
    Finally, will the image be uploaded to the BC server-side (if I use BC form creation method and not FormsCentral) in some type of assets folder or, will the form simply send any clients uploaded images to the specified email account within the form?
    Whoops, final finally: Do you think that it is better to use FormsCentral for this or BC? I want the page to be customised so the form sits on some b-ground artwork. The client has a famous image where she is holding a burning card invite. I have already used this and overlaid a contact form in Muse which has worked really well, so I want to create a (hidden from menu) uploaded page looking exactly the same and this page will be linked directly from the other Contact page, driving any fans there who wish to then upload an image rather than just send a general contact. I hope that makes sense?
    I guess what Im trying to find out is wether FormsCentral data gets fed back to BC in the same way a BC-created form would be seen in the dashboard area.
    Thanks Rohit

  • How to insert or upload image in RichTextEditor ?

    Hello everyone,
    I am new to flex and trying to design a full-fledged RichTextEditor in flex builder,Can anyone tell me how to add or upload image
    in RichTextEditor at users cursor location ?
    also user should be able to resize and move the image around the text editor.

    It can be done in either. There are 3 steps.
    Learn about greenscreen (keying) including lighting, filming, best formats for video (the way they do it in the weather segment) or masking and roto.
    learn about image editing including sizing images, color correcting, applying effects
    learn about controlling motion and editing duration of stills in a NLE or After Effects
    When you have a few of these basics down and have designed your production you then load up the video and the stills, key out the background or mask around your talent to separate the talent from the background, add your photos to the time line and animate their duration and position.
    This is extremely basic stuff that can be accomplished in a NLE or in AE. You can basically reproduce just about any effect you've ever seen in a movie in AE with the right planning and plug-ins. You can do just about anything you've ever seen in a news broadcast in any modern NLE.

  • How to add styles to image in XML view ?

    Is it possible to add styles to Images in XML view ?
    <Image alt="alternate text " src = " " />
    I tried adding sytle= "align : right " but its not working. I just want to align this element in the view to the right.

    Hi Micheal,
    Pleas see the below code.
    View:
    <core:View xmlns:core="sap.ui.core" xmlns:mvc="sap.ui.core.mvc" xmlns="sap.m"
      controllerName="testing.imageXml" xmlns:html="http://www.w3.org/1999/xhtml">
      <Page title="Image">
      <content>
      <Image id="img1" alt="alttextimage" src="images/img1.jpg" />
      </content>
      </Page>
    </core:View>
    Controller:
    onBeforeRendering: function() {
      this.getView().byId("img1").addStyleClass("myimage");
    Index.html :
    <!DOCTYPE HTML>
    <html>
      <head>
      <meta http-equiv="X-UA-Compatible" content="IE=edge">
      <meta http-equiv='Content-Type' content='text/html;charset=UTF-8'/>
      <script src="resources/sap-ui-core.js"
      id="sap-ui-bootstrap"
      data-sap-ui-libs="sap.m,sap.ui.commons"
      data-sap-ui-theme="sap_bluecrystal">
      </script>
      <script>
      sap.ui.localResources("testing");
      var app = new sap.m.App({initialPage:"idhome1"});
      var page = sap.ui.view({id:"idhome1", viewName:"testing.imageXml", type:sap.ui.core.mvc.ViewType.XML});
      app.addPage(page);
      app.placeAt("content");
      </script>
      <style>
      .myimage{float:right !important; width:300px; height:200px;}
      </style>
      </head>
      <body class="sapUiBody" role="application">
      <div id="content"></div>
      </body>
    </html>
    Output :
    Regards,
    KK

  • Is it possible to add HTML inside of a cfgridcolumn

    Hello All,
    I have been searching extensively for an answer, but have
    not yet found it and figured I would post here. Thanks to everyone
    who takes the time with this :).
    My question is this: Is it possible to add HTML to a
    cfgridcolumn?
    My form looks something like this:
    <cfform format="flash" etc..>
    <cfgrid name="mygrid" quer="myquery">
    <cfgridcolumn name="aColumn" heade="myHeader">
    </cfgrid>
    </cfform>
    I have been using Actionscript to adjust the height of the
    column since I am appending multiple columns into one. I can add
    new breaklines and do word-wrapping. The code looks like this:
    function formOnLoad(){
    contactList.variableRowHeight = true;
    contactList.getColumnAt(2).labelFunction = setLabel;
    contactList.getColumnAt(2).wordWrap = true;
    function setLabel(item:Object, columnName:String): String {
    return item.companyName + '\n' + item.description +
    '\n\nMember Since: ' + item.memberSince;
    All I want to do is have a link in the grid (for example I
    want the Company Name to be "clickable" by the user), much like the
    Developer Exchange grid in
    the
    Adobe website.
    Any help would be appreciated.

    Hi,
    if you don't have more tha one clicable event per row, just
    use the row to fire the click event and open the link that way.
    Otherwise, i have no idea what the allowed tags are in a grid
    cell.
    sorry
    tim

  • Is there a way to add an upload option to an email form? For example upload a "cad file" or "pdf"?

    Hi Is there a way to add an upload button to an email form? I want clients to upload their pdf's or cad files along with their email from the website.
    Thanks in advance!

    Hi,
    If you are using a third Party hosting like Gadaddy, than this cannot be done using Muse webform, but you can use jotform (or many available over the Internet) to create and insert the form in your Muse site. Please check the link here
    http://www.jotform.com/

  • Possible to add backlit keyboard after purchase? (dv3t)

    Is it possible to add the backlit keyboard option once you've taken possession of the computer? (IOW, I like the dv3t notebook I have right now, I just wish I had ordered the backlit keyboard and want to add it now.) Thanks

    Daevid.
    Yes you can.
    Your manual here.
    http://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0CB8QFjAA&url=http...
    Page 20 chapter 3.
    REO
    HP Expert Tester "Now testing HP Pavilion 15t i3-4030U Win8.1, 6GB RAM and 750GB HDD"
    Loaner Program”HP Split 13 x2 13r010dx i3-4012Y Win8.1, 4GB RAM and 500GB Hybrid HDD”
    Microsoft Registered Refurbisher
    Registered Microsoft Partner
    Apple Certified Macintosh Technician Certification in progress.

  • Add a reset button to a formCentral form

    Is it possible to add a cancel or reset button to a form that will close the form and not proceed to submit the form?

    Hi DogPACT,
    It is not possible to add Cancel or Reset button in PDF form using FormsCentral.

Maybe you are looking for

  • Hard Disk Error with Final Cut Pro

    Hello, I'm hoping someone can help out. I recently upgraded to the latest version of FC Studio. I'm going into FC Pro to start a new project, and I'm using a scratch disk I have always used in the past, and I'm suddenly now getting the following erro

  • Change the language of PS

    I don't know what I did but PS has downloaded in French. Is there any way I can change the language once it's installed?

  • Information on : MMS in EU

    If you can not send MMS +(Even when you have activated the mms in the settings of your iPhone)+ the problem lies with your mobile carrier in EU. Until T-Mobile, Orange, A1 and co have done their work, you may help your self here: For iPhone users in

  • Apple TV 1st generation heat

    Is it ok to leave Apple TV (1st generation) on stand by for several weeks or even months? I´m asking this because of the heat produced. Cheers.Apple

  • Document set with XMLP

    Hi, Can someone tell me if that document from Metalink is still valide : Note:337660.1 "Subject: Using XML Publisher Program To Automatically Run Shipping Report As Part Of Document Set." "The functionality to support the XML Publisher program to aut