Help with email buttons, and uploading from a webpage you created

Would anyone know how to create a 'contact us' page for a website, so people can send you their contact info and files?
The GoLive book says your provider does this, but my large hosting provider said you do it in GoLive.
Most sites have a 'contact us' page, where you can fill in your name and address, and send a PDF or file, just by clicking a 'send' button.
If someone could help me with this, I'd appreciate it.
Thank you.

If your provided provided PHP scripting you can use NateMail from MindPalette (NateMail 3.0.15), and it's free. It's a forms fill-in email contact that can be built in GoLive. I've used it with great success on my site.
Here is a link to my page:
http://www.redshift.com/~lorac/Mail/mail.php
Here's a link to NateMail:
http://www.mindpalette.com/scripts/index.php#NMAnchor
Hope this helps.
Carol

Similar Messages

  • Help with menu button and movie load

    Hello everyone....I am very new to flash and actionscripting
    and am self taught using mostly web research.
    I am building a site with a menu and a banner that is
    controlled by the menu (two swf files). I have managed to get them
    to communicate however, I am stuck at this point.
    When "bt_1" is hit I would like a "mv_1" to load in the
    banner.swf with is respected intro animation...this I figured out
    how to do...however now when "bt_2" is clicked I would like play
    the remainder of the animation of "mv_1" to unload the movie before
    "mv_2" loads with its respected enterance animation....this I would
    like to do for several buttons. The method I am using for my local
    connection is this....
    Sending script
    mySender = new LocalConnection();
    on (release) {
    \\ each button has a different param...1,2,3,4,5,6
    _root.mySender.send("menuconnect", "action", 1);
    \\ this is the best way I could figure out to disable the
    appropriate buttons..there might be a better way??
    home.enabled = false;
    couple.enabled = true;
    events.enabled = true;
    bridal.enabled = true;
    media.enabled = true;
    rsvp.enabled = true;
    Recieving script
    myReceiver = new LocalConnection();
    myReceiver.action = function(doThis) {
    if (doThis == 1)
    gotoAndPlay(2);
    if (doThis == 2)
    gotoAndPlay(3);
    //and so and soforth for all six buttons
    myReceiver.connect("menuconnect");
    If all this makes no sense I'm sorry...I tried my best...
    If some pro out there can understand what I'm trying to do
    and can help me I would greatly appreciate it....thank-you all
    sjs

    KGlad...I'm stuck again....:-(. I guess I'm not understanding
    this linkage thing well enought...
    if you don't mind tell me what you had in mind when you
    helped me with that code...this is my situation again....
    here is the actual website....www.beckyandsangeeth.com
    the menu on the left of course has the buttons and I want the
    animation pertaining to each button to load in the apparent banner
    region, (which I am still working on the indivual animations).
    I guess I'm not understanding where the movies are loaded and
    how they are linked...and so and soforth...thanks again
    Also I don't mean to be specifically speaking to
    kGlad...anyone out there I am open for ideas.
    thanks
    sjsamuel

  • Re: Satellite A500 - need some help with FN button and Toshiba programs

    Hi,
    The FN button, Eco button and other specialized buttons such as the one which opens Windows Media Player have stopped responding on my A500 PSAM3A-03P00E which runs Windows Vista. I can still change screen brightness with the FN button but no menu appears at the top of the screen.
    Also the Toshiba programs which are meant to run at start up such as PC Health Monitor are not auto starting, even though they are selected in System Configuration (msconfig).
    Bluetooth manager is however running at start up.
    I have previously had blue screen errors however they are not a problem since I updated the BIOS to 1.5 and uninstalled Zonealarms.
    Cheers

    Thanks all,
    All problems have been fixed after downloads of Toshiba value added package and the new version of PC Health Monitor (V1.3.2.0).

  • Help with email alert using email_alertcdf from download

    We are attempting to get the email alert function working. We have downloaded the files into their proper locations, ensured the JRE is installed, registered the function, updated the .udf and are attempting to execute a script.The script errors out with an "Unexpected End of File reached" error.Any help is greatly appreciated!

    Endperform wrote:Are you looking to keep your email on the server at all times?  If so, I suggest looking into setting up IMAP on your home server which will do what you need.
    Endperform:  yes that is the plan.  Do still keep getmail to fetch the pop3 email from my ISP and the setup IMAP so 'forward' onto the Arch client?
    Thanks for the reply.
    pyther wrote:I'd have to second what endperform said, if you want to keep you mail on your server at all times, just check out IMAP. Also you can organize your mail in folders with imap
    pyther: Thanks for confirming what I've googled.
    JTD

  • Help with radio buttons and show/hide javascript

    Hi. I'm new working with LiveCycle and also pretty much at a basic/beginner level of javascripting. I'm creating a pdf fillable form and one of the tasks I've been given is to add a function where if Option A is chosen by the user, then the correspondng table will appear, and if Option B is chosen another table will appear. After some searching I Iearned more about how radio buttons can be used, so I created a set of radio buttons. I have tried several different things, the latest was making both tables "hidden", and then taking to the radio button list group and applying the show/hide script to each of the radio buttons in the group. Still nothing seems to be working as I want it to. The table remains hidden when I click on the . This is what the code looks like right now. I know I'm obviously doing something wrong, this seems like such a basic thing to code. Getting to the frustration point, if you can sort me out with what I am missing/overlooking please let me know. Many thanks!
    Note. The radio buttons are not in the same table, they are higher up in the form outside of the tables that I am trying to show/hide, but they are in the same subform. I don't know if that might be an issue?
    form1.#subform[0].RadioButtonList::click - (JavaScript, client)
    form1.#subform[0].RadioButtonList.#field[0]::click - (JavaScript, client)
       if ( RadioButtonList.#field[0].selectedIndex == 1)
         form1.#subform[0].Table1_Work.presence = "visible"
       else
       form1.#subform[0].Table1_Work.presence = "hidden"
    form1.#subform[0].RadioButtonList.#field[1]::click - (JavaScript, client)
       if ( RadioButtonList.#field[1].selectedIndex == 2)
        form1.#subform[0].Table1_Official.presence = "visible"
      else
         form1.#subform[0].Table1_Official.presence = "hidden"

    Hi,
    For starters you have unnamed pages, which is not a good idea. This makes it more difficult to reference objects. In your JavaScript you would have to resolve the node, however the simpliest route would be to name the page first. Something like "page1". Have a look at this example for referencing objects: http://assure.ly/kUP02y.
    Next I would not place the script in each of the radio buttons, as this is likely to cause conflicts and is doubling the script. The best place to put the script is in the click event of the radio button exclusion group. This contains all of the radio buttons. See an example here: http://assure.ly/h7whb8 and https://acrobat.com/#d=ALebgueDXjewHjGyYRdrmw.
    You syntax for JavaScript if/else statements is potentially incorrect. The script within the statements should be wrapped in curly brackets. While you can get away with it for single lines, I would not be inclined to take that approach. So:
    if (a test) {
         // do something
    else {
         // do something else
    With the radio button exclusion group you can use its rawValue, just specify it in the Object > Binding palette. So on the basis of chaning the page name:
    if (this.rawValue == "1") {
         page1.Table1_Work.presence = "visible";
    else {
         page1.Table1_Work.presence = "hidden";
    There is a syntax checker button in the Script Editor that should highlight errors.
    Niall

  • Help with layout buttons and loops

    Hey,
    I am using mainstage for the first time for my band. We have a bunch of loops that we want to play in the background when i hit each corresponding button on my M-Audio keyboard, but i do not see an option to set a button to do that within Mainstage. Is there any way to set this up? I cant open up logic and press play and pause in the middle of a set.
    Thanks

    Have you tried creating an EXS instrument with the loops? You have to do this in Logic then open it on a channel strip in Mainstage.

  • Help with copying permissions and roles from one user to another. Issue with RoleDefinitions

    I need help please. 
    I’m trying to copy a role definition/name in SharePoint 2010 Powershell. 
    The below is only a piece of my script, but I have to find '$SearchUser" and wherever it lives (webs, lists, groups), I need to add "$account" and copy permissions
    from '$SearchUser" . We are doing this to limit certain users from access our farm (by adding a new AD domain that does not contain these users, then deleting the old domain). 
    Every time I run it, it seems to mess up on this line: 
    $role = $web.RoleDefinitions.[$newRoleDef].
     It is acting like the $newRoleDef is null, but it is not. 
    When I outputfile the $newRoleDef, it has values, such as Read, Contribute.
    foreach($Web in $Site.AllWebs)
    if($Web.HasUniqueRoleAssignments -eq $True)
    foreach($WebRoleAssignment in $Web.RoleAssignments )
    if($WebRoleAssignment.Member.userlogin)
    if($WebRoleAssignment.Member.LoginName -eq $SearchUser)
    $WebUserPermissions=@()
    foreach ($RoleDefinition in $WebRoleAssignment.RoleDefinitionBindings)
    $newRoleDef = $RoleDefinition.Name
    $assignment = New-Object Microsoft.SharePoint.SPRoleAssignment($account)
    $role = $web.RoleDefinitions.[$newRoleDef]
    $assignment.RoleDefinitionBindings.Add($role)
    $_.RoleAssignments.Add($assignment)

    Hi,
    Glad to hear that you solve this issue, thanks for your sharing.
    Thanks,
    Linda Li
    Linda Li
    TechNet Community Support

  • My lockscreen did not showing me time and it lags, help PLS!  it´s only black background with unlock button and it lags when i unlocking it  pls help

    My lockscreen did not showing me time and it lags, help PLS!
    it´s only black background with unlock button and it lags when i unlocking it
    pls help

    It's not an Apple issue and Apple has nothing to do with it.
    The only way to buy an iPhone officially refurbished by Apple is to buy it from an Apple store or via Apple's website.
    Refurbished iPhones sold via other retailers are not refurbished by Apple.
    Sounds like Wireless Wave did all they could... they refunded your money.
    Your only issue is with them.  Stop getting all worked up over it.

  • Results for my browser has prob with 1st inch and harf from new babbilon crap will not hipolink i can not sign in or register on any thing please help

    results for my browser has prob with 1st inch and harf from new babbilon crap will not hipolink i can not sign in or register on any thing please help

    has anyone solve this problem? i upgraded my iphone 4 to 5.1.1 and now i can see only ""We're sorry, we are unable to continue with your activation at this time.  Please try again later, or contact customer care."
    i tried mani sim card, laptops, wifi. but for 7 days the problem is still exist....
    Please help me!!!

  • I need help with controlling two .swf's from third.

    Hi, thanks for reading!
    I need help with controlling two .swf's from third.
    I have a problem where I need to use a corporate designed
    .swf in a digital signage solution, but have been told by the legal
    department that it can not be modified in any way, I also can't
    have the source file yada yada. I pulled the .swfs from their
    website and I decompiled them to see what I was up against.
    The main swf that I need to control is HCIC.swf and the
    problem is it starts w/ a preloader, which after loading stops on a
    frame that requires user input (button press) on a play button,
    before the movie will proceed and play through.
    What I have done so far is to create a container swf,
    HCIC_container.swf that will act as Target for the HCIC.swf, and
    allow me to send actionscript to the file I'm not allowed to
    modify.
    I managed to get that done with the help of someone on
    another forum. It was my hope that the following script would just
    start HCIC.swf at a frame past the preloader and play button, and
    just play through.
    var container:MovieClip = createEmptyMovieClip("container",
    getNextHighestDepth());
    var mcLoader:MovieClipLoader = new MovieClipLoader();
    mcLoader.addListener(this);
    mcLoader.loadClip("MCIC.swf", container);
    function onLoadInit(mc:MovieClip) {
    mc.gotoAndPlay(14);
    But unfortunately it didn't solve my problem. Because there
    is a media-controller.swf, that is being loaded by HCIC.swf that
    has the controls including the play button to start HCIC.swf.
    Here's a link to a .zip file with all 3 .swf files, and all 3
    .fla files.
    http://www.axiscc.com/temp/HCIC.zip
    What I need to do is automatically start the HCIC.swf file
    bypassing the pre-loader and play button without editing it or the
    media-controller.swf in anyway. So all the scripting needs to be
    done in HCIC_container.swf.
    I know this is confusing, and its difficult to explain, but
    if you look at the files it should make sense.
    ActionScripting is far from my strong point, so I'm
    definitely over my head here.
    Thanks for your help.

    Got my solution on another forum.
    http://www.actionscript.org/forums/showthread.php3?t=146827

  • Help with linking buttons to Scenes

    Hey,
    Rookie to Flash and AS3. Just needed some help with my buttons. Im making a flash program about pancakes (random I know). I have a "Mainmenu" scene and then a "Recipe" scene. I have a button on my mainmenu which takes me to the recipe page when I click it, the code behind the button is
    "stop();btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);function mouseDownHandler(event:MouseEvent):void {
    gotoAndStop(1, "Recipe");
    Then when I arrive at my recipe page I have a button which will take me back to my MainMenu, the code behind that button is:
    "stop();btn_home.addEventListener(MouseEvent.MOUSE_DOWN, mouse5DownHandler);function mouse5DownHandler(event:MouseEvent):void {
    gotoAndPlay(1, "MainMenu");
    So I run my program and the first button works and takes me to recipe page but the button to get to the main menu does nothing, click it and no response or anything
    Please help

    First, hopefully having all your code mushed onto the same line is a copy/paste error, otherwise it should look like...
    stop();
    btn_recipe.addEventListener(MouseEvent.MOUSE_DOWN, mouseDownHandler);
    function mouseDownHandler(event:MouseEvent):void {
         gotoAndStop(1, "Recipe");
    If the intention is to click the buttons to make them work, then you should use CLICK instead of MOUSE_DOWN.  MOUSE_DOWN can be a persistent state whereas CLICK involves releasing it afterwards.
    As for the code to get you back home, where is it located on the timeline?  Are you getting any error messages when you try to use it?
    One thing you should learn to use is the trace() function.  It is useful for troubleshooting.  You can use it now to see if your second button is talking to the function at all...
    stop();
    btn_home.addEventListener(MouseEvent.CLICK, mouse5DownHandler);
    function mouse5DownHandler(event:MouseEvent):void {
         trace("the button works okay");
         gotoAndPlay(1, "MainMenu");
    If you don't get that message in the output panel, you'll know the button is not properly coded to work.
    Most folks here will recommend you get away from using scenes in a design that includes navigation--they have a history of being problematic.  Instead of using scenes, divide the one main timeline up into sections or use movieclips for the sections and manage their visibility... or do a bit of both.

  • Hi, I have iPad 2 and iPhone 4S and I have a problem a camera problem it doesn't work when I try try to open it it reclose also I can't close my iPad with upper button and I can't restart

    Hi, I have iPad 2 and iPhone 4S and I have a problem a camera problem it doesn't work when I try try to open it it reclose also I can't close my iPad with upper button and I can't restart help me

    - Reset the iOS device. Nothing will be lost.
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Reset all settings      
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                       

  • Why is Apple so bad at providing customers with information on what the problem with email is and what they are doing to fix it?

    Why is apple not providing information on what the problem withe email is and what they are doing to fix, along with a time frame for fixing the problem.

    It was because the problem was major.  If you do not know tech, you should know that a two day outage usually indicates some type of virus, hack, or a bad software load that they had to unravel.  The common way to solve that is to rebuild servers and put back into service.  That takes time.
    Apple did not want to admit this problem.  My guess at this stange was that they loaded new software that might be associated with the new IOS and it crashed.  To reveal this would be to cast into doubt their future revenue.
    Either way.  Run do not walk away from Icloud products and services.  Apple has demonstrated they can not be a business partner.

  • Need help with a button

    Hello,
    I need help with a button. I created a button and set it up
    so that when you click and hold it, the button becomes lighter in
    color (I used Alpha). I want the button to stay this light color
    after i release the click. Right now it goes back to the normal
    color when I release the click. Can somone help we this?
    Thanks!

    rpofclt wrote:
    > Hello,
    >
    > I need help with a button. I created a button and set it
    up so that when you
    > click and hold it, the button becomes lighter in color
    (I used Alpha). I want
    > the button to stay this light color after i release the
    click. Right now it
    > goes back to the normal color when I release the click.
    Can somone help we
    > this?
    you can't use the button itself if you want to maintain the
    DOWN state after
    release as button automatically resets itself once the mouse
    lives the HIT zone.
    Use movie clip instead and on press simply send it to a frame
    where there
    is DOWN state like image.
    Best Regards
    Urami
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Gallery with Paypal buttons and drop-downs on the index page?

    I'm looking for a LR gallery where I can have thumbnails with Paypal buttons and drop-downs on the index page.
    I would prefer to keep my galleries interface streamlined and don't want to clutter it up with dropdowns and cart. I would like to have 1 page for ordering that has all my images as thumbnails with drop downs for price and size, rather than right-clicking on and image which opens in another page like the LRG Gallery with Paypal.
    I don't have a lot of experience messing with code, and none with .js. I did make a drop down in Paypal and have the code, but I think things would be pretty unwield it I designed a page as a table like I would in MS Word.
    I'm familiar with LRG Complete gallery, but don't see that it has the ability to not require a right click to order.
    I don't have a lot of experience messing with code, and none with .js. I did make a drop down in Paypal and have the code, but I think things would be pretty unwield it I designed a page as a table like I would in MS Word.
    Any thoughts, ideas, or help?
    Thanks,
    Reid

    Maybe some could try this out, and has experienced the same problem.
    It is on the site http://www.fonetix.biz
    and then push the German flag in the top Right corner, and further click on the Button "Contact info". It will give the eroor.

Maybe you are looking for

  • All of my schedule is missing from the calendar app. Why and how do I fix it?

    I only noticed at the beginning of this week, but my entire calendar is empty. I didn't have it separated into different parts or anything else special. It is now just an empty blank and it won't allow me to input any new data. I have had everything

  • Appt entry/edit question:  want tips for ease of use

    Hi all, I use iCal on my iMac and iPhone, and have run across these issues, and wondered if there is a trick or tip I am missing. Adding an appointment on the desktop: When the event edit screen pops up, I try tabbing through each field to enter the

  • Async/Sync without BPM

    Hi Experts, Just wondering if this scenario is possible? Client Proxy (Async) -> Web Service (Sync) -> Server Proxy (Async) I've read some blogs about the bridge using module processor (RequestResponseBean/ResponseOnewayBean). But usually, I only see

  • Epson Perfection 3490

    I have this "old" scanner and can't seem to get it to work properly with my new iMac and Mountain LIon. Once connected it downloaded sftware (ICA?) and using that I can scan to Mail, pictures, desktop etc. What I can't do is find a "copy" which sends

  • Process Order Number Range

    Hi Gurus, How do you exactly add/create Number Range Groups for process orders? Thanks, Kumar