I can't figure out how to put a login form on my site

Hello, I have a site that I created in flash and I need to add a login to a site caleld sharefile.  This form works correctly in html but I can't get it to work in my flash file.  Can anyone please help me out with transferrign this simple html form into flash.  Here is the code snippet:
<form method="post" action="https://fmc-service.sharefile.com">
  <table cellspacing="0" cellpadding="0" border="0">
    <tr><td>Email:</td></tr>
    <tr><td><input type="text" name="username" /></td></tr>
    <tr><td height="5"></td></tr>
    <tr><td>Password:</td></tr>
    <tr><td><input type="password" name="password" /></td></tr>
    <tr><td height="10"></td></tr>
    <tr><td><input type="submit" value="Log In" /></td></tr>
    <tr><td height="10"></td></tr>
  </table>
</form>
I have the input text ready with one input box labeled username and the other labeled password in flash and on the submit button I have the script:
on (release) {
    getURL("https://fmc-service.sharefile.com", "", "POST");
When I publish the file it takes me to the right website but it does not log me in.  It just acts as if I just put a regular link to the sharefile login page.  I figured this was too simple.  Any help would greatly be appreciated.
Thanks,
Jason

if you're testing locally, you probably have a security sandbox issue.  fix it here:
http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04a.ht ml
otherwise, you don't have username and password defined on the timeline that contains your button and/or your button is a movieclip button

Similar Messages

  • Can't figure out how to PUT

    First off, I'm a Newbie to Dreamweaver. So. I'm in a real
    learning phase.
    I can't figure out how to "Put" my development file to my web
    Server. I have an ftp connection. At least I think I do since I
    have file list that seems to be pointing to the files I have on
    webserver. I manually copied my files from my development folder to
    my web server. Now I want to use Dreamweaver to put my files and
    then I want to have Dreamweaver manage my file so that next time I
    one have to upload my "Changed" files. I searched Dreamweaver Help
    and didn't understand what I read. Sorry..
    Appreciate any help you can give me, or point me to somewhere
    on the web that my a step by step procedure.
    Thanks....

    Please tell me this - when you look at the name of the site
    in the drop-down
    list of defined sites on the left top of the Files panel, do
    you see a
    folder icon, or a little computer icon?
    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
    ==================
    "bruceaj" <[email protected]> wrote in
    message
    news:epr3mt$4mu$[email protected]..
    > First off, I'm a Newbie to Dreamweaver. So. I'm in a
    real learning phase.
    >
    > I can't figure out how to "Put" my development file to
    my web Server. I
    > have
    > an ftp connection. At least I think I do since I have
    file list that seems
    > to
    > be pointing to the files I have on webserver. I manually
    copied my files
    > from
    > my development folder to my web server. Now I want to
    use Dreamweaver to
    > put my
    > files and then I want to have Dreamweaver manage my file
    so that next
    > time I
    > one have to upload my "Changed" files. I searched
    Dreamweaver Help and
    > didn't
    > understand what I read. Sorry..
    >
    > Appreciate any help you can give me, or point me to
    somewhere on the web
    > that
    > my a step by step procedure.
    >
    > Thanks....
    >

  • Can not figure out how to put my music in my library onto my ipod shuffle?

    can not figure out how to put my music in my library onto my ipod shuffle?

    Hello jacquekatiecam
    The article below will walk you through setting up and syncing music to your iPod shuffle.
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    http://support.apple.com/kb/ph12313
    Regards,
    -Norm G

  • I recently updated by iphone 4s but can't figure out how to put icons on the desktop as short cuts to my games.

    I recently updated my iphone 4s but can't figure out how to put my game icons on the front page to use as shortcuts to my games. Anyone know?

    Dear Friend ,
    Can you please be more clear by mentioning what do you mean by shortcuts to the games ?
    Still Here is what it takes you to get what you want .
    Firstly , your iPhone by default comes with preset of 16-18 Apps in your Homescreen (including Dock)
    Make sure your apps are installed either directly from the app store in your phone or through iTunes in your Mac or PC
    once they are installed you can notice them by swiping the homescreens.
    Long press the app icon , you can notice they all would be in "jiggle" mode
    Drag them and place them in your home screen

  • Can't figure out how to create an update form in a cfwindow tag

    I finally was able to figure out how to do an add form inside
    of a cfwindow tag yesterday. But I want this form to be
    multipurpose, and allow edits as well. But for the life of me, I
    can't figure out how to pass a row of data to the form inside a
    cfwindow. Normally, I'd pass the primary key via the URL but if I
    try to do that here, it basically reloads the page and closes out
    the cfwindow since I have the window set to not show by default.
    My page has a list of departments. My page is called
    departments.cfm. For each row in the department list, there is a
    link called edit. When the user clicks this link, I want the
    cfwindow to open with the cfform populated with the data from the
    department list for the row selected. Sounds simple enough, except
    how do I pass the department_id to the form? If my link is <a
    href="departments.cfm?id=#department_id#>Edit</a>, the
    cfwindow tag displays and I can see the data in it, but then closes
    right away. I finally figured out that it was calling the page
    again and the cfwindow is closing because I have it set to not
    display by default. I'm about ready to drop this cfwindow and just
    do real popup windows via javascript. And I'm normally not in favor
    of doing popup windows, but the application I'm working on doesn't
    have enough real estate on the screen to do a hidden form, so a
    separate window containing the form is my best solution.
    Anyone have any suggestions?

    Well, this is kind of a tough one for me, but it sounds like
    the best way will be to launch a JavaScript function everytime the
    user clicks the link, like this:
    <cfoutput query="getDepartments">
    <a href="javascript:showWin(#yourID#)">show
    window</a>
    <br>
    </cfoutput>
    the showWin function will both create the window and launch
    it, passing in the user chosen var:
    function showWin(id) {
    var URL = 'editDeptPage.cfm?dept_id=' + id;
    var winName = 'deptWin' + id;
    ColdFusion.Window.create(winName, 'Edit the Department',
    URL,
    {x:100,y:100,height:300,width:400,modal:false,closable:true,
    draggable:true,resizable:true,center:true,initshow:true,
    minheight:200,minwidth:200 })
    The following line of code is supposedly to make sure that
    the window refreshes each time it is launched, by naming it
    something new each time:
    var winName = 'deptWin' + id;
    However, if it doesn't work, I think there's a Window refresh
    function in the Ext library but I'm not sure.
    Also, in the showWin function, after the Window is created,
    you might need this but I'm not sure:
    ColdFusion.Window.show(winName)
    Talk to you later,
    Peter

  • HT2534 I have already set up an Itunes account, but it says that i need to review the account. I guess i am not finished setting it up yet. I don't have a credit or debit card, and now i can't figure out how to put in 'none.'  How do I do this??? Pleaase

    I have already set up  and Itunes account, but it says that i need to reveiw the account. I guess i have not finished setting it up yet. But when i go into the payment information it says that i need to fill out the type of credit/debit card that i have. Well, i don't have one! How do i put that i have 'none?' it doesnt even have a 'none' button. PLLEEAAASseeee help me!!! Please:)

    If the amount of the purchase is close to $21.07, then you need to take into account taxes may be added.
    If you go beyond the credit from a gift card the balance will be billed to your credit card account.

  • Can't figure out how to put Site Meter or Statcounter on my site?

    Hi,
    I'm using Notebook style for my website and wanting to put Sitemeter or Statcounter on the footer of my first Welcome page and it's all like a graph border thing. So I followed the instructions of how to do it with Sitemeter, use a text box and then type some code in and paste. Then I tried to do it with Statcounter and had a phrase where I wanted it to go on the footer.
    I'm using Transmit FTP and you can edit the HTML before you publish and I the copy paste for the code. When I go to publish it to my website all I see is the HTML code come up and not the counter at all. What am I doing wrong?
    S.

    varkgirl,
    I haven't tried this yet but I think I know what the problem is, I was doing the edit in Transmit FTP before I publish to my server instead of after and I'm guessing that is why it didn't work.
    Right now I'm focused on getting my pages down with photos and text and it's a big job since I have a lot of products.
    S.

  • I have never used my mac for desktop publishing before and am having some problems.  This sounds really dumb, but I can't figure out how to put a border around a text box.  Also, how do you edit the border, i.e. border color, thickness, etc. Help!

    I have never used my mac for desktop publishing before and am running into some real problems.  How do you put a border around a text box?  Can you edit the border - color, thickness, etc.?  Help!

    I think the best solution is to read Pages documentation, go to Help and you have a long list of options. Pages is capable of quite sophisticated things, some features are above Nisus or Mellel, so it is not so simple to summarize things in a few lines.

  • HT2188 How do I download and install iTunes to my new computer.  I had everything on the old computer but can't figure out how to put it on the new one.

    How do I download and install to my new computer? This is not a new IPod (classic), I had everything on the old cpu. Thank you in advance for any help you can give me.

    aholli11 wrote:
    How do I download and install to my new computer?
    From your OLD computer...
    Copy your ENTIRE iTunes FOLDER to an External Drive... and then from the External Drive to your New Computer..
    Full Details Here  >  http://support.apple.com/kb/HT1751
    Also... have a look at these 2 Videos...
    http://macmost.com/moving-your-itunes-library.html
    http://macmost.com/moving-your-itunes-media-to-an-external-drive.html

  • Can't figure out how to put a Line "-" over and "E" for pronunciation...

    I can see how to do it for other accent marks but not for the straight line.
    Using Appleworks, I would like the "E" in "TELA" to have a line "-"over it, so it is pronounced properly.
    I have been at this for at least two hours.
    Any suggestions?
    thanks
    Powerbook   Mac OS X (10.4.6)  

    One could use the Equation Editor to construct any character under a bar quite easily. Launch Equation Editor from the Edit menu. Choose a font that matches your text and set the style to "text". Begin typing your word. When you get to the letter(s) requiring the overbar, select the overbar from the appropriate dropdown menu (the one you want is just right of center in the bottom row), then type your character(s). Hit the right arrow one time (and you'll probably have to reset the font style to "text" again) and continue typing your word. Close the Equation Editor window to place the entry into your document.

  • Officejet Pro L7780 Offline, can't figure out how to put back online??

    Hi, My power went out a couple of days ago and my printer wasn't on when I came to use it. I unplugged and replugged in and now it is on but won't print. It says it is offline. I have re-configured the network and it show on my computer but won't print still says offline. Please help. I have things I need to print asap;!!

    Please describe your system:
    What computer operating system?
    What router, encryption and ISP?
    Did you have a static IP address set for the printer?
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • HT201493 After recent iOS update, no longer have names and pics, but only email addresses of friends? Can't figure out how to put names/pics back on. Suggestions??

    Advice??

    Your issue has been escalated to a Verizon agent. Before the agent can begin assisting you, they will need to collect further information from you.
    Please go to your profile page for the forum, and look in the middle, right at the top where you will find an area titled "My Support Cases". You can reach your profile page by clicking on your name beside your post, or at the top left of this page underneath the title of the board.
    Under “My Support Cases” you will find a link to the private board where you and the agent may exchange information. This should be checked on a frequent basis as the agent may be waiting for information from you before they can proceed with any actions.
    To ensure you know when they have responded to you, at the top of your support case there is a drop down menu for support case options. Open that and choose "subscribe".
    Please keep all correspondence regarding your issue in the private support portal.

  • I updated iTunes on my computer and now I can't figure out how to put songs on my iPod

    Before I could just hit the "On this ipod" or whatever it was button, and do the whole drag and drop thing and it was all good. But now that button is gone and I don't know what I'm supposed to do. help?!

    IUf iTunes sees the iPod:
    iTunes 11 for Windows: Syncing overview
    iTunes 11 for Windows: Set up syncing for iPod, iPhone, or iPad
    or
    iTunes 11 for Mac: Syncing overview
    iTunes 11 for Mac: Set up syncing for iPod, iPhone, or iPad
    If iTunes does not see the iPod:
    iOS: Device not recognized in iTunes for Mac OS X
    Or
    See
    iOS: Device not recognized in iTunes for Windows
    - I would start with
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    or              
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    However, after your remove the Apple software components also remove the iCloud Control Panel via Windows Programs and Features app in the Window Control Panel. Then reinstall all the Apple software components
    - Then do the other actions of:
    iOS: Device not recognized in iTunes for Windows
    paying special attention to item #5
    - New cable and different USB port
    - Run this and see if the results help with determine the cause
    iTunes for Windows: Device Sync Tests
    Also see:
    iPod not recognised by windows iTunes
    Troubleshooting issues with iTunes for Windows updates
    - Try on another computer to help determine if computer or iPod problem

  • I can't figure out how to import my native instruments into the library

    I'm trying to use Komplete 8 as a plug-in and I can't figure out how to put it in to library.

    Load the plugin into the insert, select your patch and then select "save as" from the channel strip menu.

  • Can't figure out how to keep two different sites...

    How can I keep two sites and be able to get to both of them. When I create an iMovie and go to the share tab to share it wants to put it in the last site I created. What if that's not the site I want it on? I can't figure out how to go back and forth to the sites and update them without them writing over each other...

    Baldredlion:
    Regarding Varkgirls suggestion about iWebSites:
    I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your Domain.sites files before starting the splitting process.
    This lets me edit several sites and only republish the one I want.
    Do you Twango?
    15 MBP 2.16Ghz; G5 Dual Core 2GHz, 2G RAM, 250G HD; G4 Dual 1Ghz, 1.5G RAM;   Mac OS X (10.4.9)   22" LCD, 710G FW HDs, Canon: SD700IS/i850/LIDE 50, Epson R200, 30G iPod, 2G Nano

Maybe you are looking for

  • Multiple plug-ins in one file (CodeCarbonPowerPC)?

    I'm trying to put 3 plug-ins in one file. Very simple on Windows (3 PiPL resource blocks with different entrypoints). And don't worked on PowerPC: CodeCarbonPowerPC(0,0,"") <-- what is last parameter (string)? Any example? Thanks, Ivan Kharin

  • Cs5.5 production premium...how many machines can I install this on?

    I just purchased cs5.5 production premium...it hasn't arrived yet but I was wondering how many machines I can install in on.

  • [SOLVED] Strange issue with dhcpcd

    Alright, so today when I booted up, I tried to connect to my campus' wireless network using Wicd, but it timed out every time it attempted to obtain an IP. So I ran through my usual steps to get wireless up in the console (ifconfig -> iwconfig -> dhc

  • How do you convert channels.dvb to channels.conf

    Title says is all. How do you convert the kaffeine file channels.dvb to a channels.conf file which can be used by mplayer. The winterhill transmitter in the UK is now totally digital, since the change over I've not been able to get BBC channels prope

  • Getting error View cluster is already open. Go Back with F3

    Dear All, when i try to open (Templates > Assign Mini-Templates to Templates) i am getting following error, View cluster is already open. Go Back with F3 Message no. SV851 CRMVC_TFW_TEMPLATES please help me