Can I build a interactive log-in form with Edge and Export Raw code to edit?

Hey Everyone,
I love adobe edge, but I'm still getting used to it. It's very easy to use, but I ran into an issue. I am redesigning a webpage for a client and need to build a log-in page and re-design the site. The site is a Dashboard that will be on an ipad and computer. What I need to do is take my design and design a template for them to use. They require HTML4 and up with some coding (not a fan of coding, I am strictly a designer, and before you guys critize about why I took the job when I don't know coding, it's a side project they are having me do for them while the main design project is being evaluated and I'm on contract so I don't have a choice, still would like to learn how to achieve what I need) but I still want to maintain the animation I have planned for the log in, very simple nothing special. Basically what I want is when you log in and click in the "text" box the background image will go from the clear image to the blur image.
What I've done so far,
I built the log-in page as a test to see if it would work (didn't take long since I saved as a PSD and imporated the files). I've attached an imagw to show a visual of what I am trying to do. The animation works fgreat for what i need, but now I want the box I click in to be writtable inside and work with the animation. I can't seem to figure out how to make the box's I created typable to type in for a "Username" and "Password" in other word interative. I used the boxes provided in edge because they are HTML boxes, but I want them to become text boxes to enter the Username and Password (It doesn't have to be perfect just enough for me to type in to pass off to the programmers). I know you can make edge interative with muse and what not and I was hoping to achieve what I want for them so I can export it and pass it off to the programmers. Is there a way to add this in Edge? If not, I know you can export to Dreamweaver and  when I import the file to Dreamweaver I just see a grey box with the file I created (.oma I think) from Edge but not the content unless I "Preview it" in a browser.
So is there a way to build what I want in edge without resorting to dreamweaver? If so and there is code to input can you guys provide step by step on how to put it in the program? And is there a way to export the project so I can pass the RAW code to the programmers to do there thing? Lastly, is there a way to incorporate Jquery mobile to Edge? For the Dashboard can I build the same thing in Edge? Example what will be in there are things like charts, Calendars, Dates, Etc, Etc.  If I need to resort to building it in dreamweaver I can provide the code for you guys to alter to change for what I need. Like I said I'm not a big fan of coding and a little stranger to it. I just know the basics and the fact I haven't touched dreamweaver since CS4 makes it even harder to use. Some tools I like are gone such as AP divs. However i like the new elements you can inject into the program such as the Jquery stuff, but for the simplist things I want to do such as moving them left or right or centering them is a different story.
Please Help!
Thanks!

if you search on the forum you can find useful posts about creating a form in edge
Zaxist

Similar Messages

  • Can you build an iOS app on windows with dreamweaver and submit it to the apple store?

    Hi
    I am interested in starting to develop my own apps for the App Store,
    I own a windows computer and I am wondering if its possible to build an app
    In dreamweaver and then submit it through phonegap build to the apple store.
    Can't seem to find the answer anywhere =(
    Thanks,
    Nic

    I am interested in starting to develop my own apps for the App Store,
    I own a windows computer and I am wondering if its possible to build an app
    In dreamweaver and then submit it through phonegap build to the apple store.
    I have an app in the App Store that I designed in Photoshop, developed in Dreamweaver CS6, and packaged with Adobe PhoneGap Build. The first three steps - design, development, and packaging I did on a Windows computer. But I used a Mac for my developer certificate and provisioning profile, as well as the finall step of preparing and submitting it to the App Store through Application Loader.
    Here is some info: Building for iOS
    You'll also need an Apple Developer account, and an Intel-based Mac running Mac OS X Snow Leopard or later to develop and distribute iOS  apps. If you're building an app for a client, you'll use their developer account for the submission process.
    Here is a little more info: iOS Developer Program

  • Can DME, EDI be used to build a form(with pictures and logos)?

    Hi All
    I have a question on DME,Electronic transmission and forms(sapscripts,smartforms etc).
    There is a program rfumsv00(advance tax return). Surprisingly this program doesnot give the option to output the data into a "form"(government specified format with logos, pictures etc).
    (The program gives this facility to output to a form only for Germany and Belgium.)
    Now i want to get the output of this program into a "format as prescribed by the government of India". How do i do this?
    The program has facility for "electronic transmission" and DME". Can we use this to get a output similar to a "form"?If yes...how?
    Message was edited by:
            kumar kumar

    Hi Anji
    Thank you(I am on the verge of awaring you points).
    But one last clarification. You have mentioned that i can design a FORM and then make the program call the form. But this would involve making a Z program.
    I want to know if instead of the form, I can use the option "electronic return" or "DME"?Maybe the  "electronic return" or "DME" already has pre defined forms (with pictures and logos) and if not will SAP allow me to define the form in DME  or electronic return and make the standard program to use that? This way i dont have to do a Z development. Can you help me?
    Message was edited by:
            kumar kumar

  • I can not open an IRS fill-in form with x-1

    I can not open an IRS fill=in form with x=1  I have no problem an another computer running an older version of reader.  I am running windows 7 on a relatively new computer, and it also opened forms with the older version.

    What exactly means "can not"?

  • Can I auto submit a WebApp Search form (with javascript) so the results show up automatically?

    Can I automatically submit a WebApp Search form (with javascript) so the results show up automatically?

    yes. I also interested in how to do it.

  • Creating an messagebox in forms with look and feel of Windows

    I wanted to create an message box in my form with look and feel of windows.For this i used the package ORA.FFI...but i am getting an error....and i am not bale to clear it...the code is as follows
    Package Specification: -
    PACKAGE messagebox IS
    /*Function message_box calls windows MessageBox function. */
    FUNCTION message_box(plptext IN VARCHAR2,plpcaption IN VARCHAR2)
    RETURN PLS_INTEGER;
    END;
    Package body : -
    PACKAGE BODY messagebox IS
    lh_window ORA_FFI.LIBHANDLETYPE;
    fh_mb ORA_FFI.FUNCHANDLETYPE;
    lh_forms ora_ffi.libHandleType;
    /* Function i_mbx acts as the interface to the Messagebox
    function in windows
    FUNCTION i_mbx(funchandle IN ORA_FFI.FUNCHANDLETYPE,
    plptext IN OUT VARCHAR2,
    plpcaption IN OUT VARCHAR2)
    RETURN PLS_INTEGER;
    PRAGMA interface(C,i_mbx,11265);
    FUNCTION message_box(plptext IN VARCHAR2,
    plpcaption IN VARCHAR2)
    RETURN PLS_INTEGER IS
    ltext VARCHAR2(500) := plptext;
    lcaption VARCHAR2(500) := plpcaption;
    BEGIN
    RETURN(i_mbx(fh_mb,ltext,lcaption));
    END;
    BEGIN
    lh_window := ORA_FFI.LOAD_LIBRARY('d:\','DclMsgBox.dll');
    fh_mb := ORA_FFI.REGISTER_FUNCTION(lh_window,'DclMsgBox',ORA_FFI.C_STD);
    ORA_FFI.REGISTER_RETURN(fh_mb,ORA_FFI.C_CHAR_PTR);
    ORA_FFI.REGISTER_RETURN(fh_mb,ORA_FFI.C_CHAR_PTR);
    --ORA_FFI.REGISTER_RETURN(fh_mb,ORA_FFI.C_INT);
    END;
    Now when i call this function in When-New-Form-Instance as
    declare
    p number;
    begin
    p:=messagebox.message_box('hello','test');
    end;
    I had created an dll for message box and placed the .dll and .lib files in the d:\ of my system.
    I get an error message when i run the app. The error is:
    The instruction at "0x005a3b24" referenced memory at "0x00000006".The memory could not be "read".
    Can anybody please tell me where have i gone wrong....

    Colin Martin wrote:
    I agree the leather look is horrible. It's just not a reflection of the cutting edge modern design we have all got to love over the years. If it has to be there at least give us a choice of looks.
    There is a word for this (not that one) - skeuomorph. Wikipedia defines this as 'a derivative object that retains ornamental design cues to a structure that was necessary in the original. Skeuomorphs may be deliberately employed to make the new look comfortably old and familiar'.
    Common examples are found in audio software with pictures of actual knobs that you turn, as here; and the leather-bound tear-off look of calendar and contacts on the iPad is the same principle: the intention is to make it familiar and friendly to people who might otherwise be frightened off by a modern look because they are not used to modern technology. The whole concept and look of the iOS operating system is being brought into use on Macs for the same reason, to encourage non-tech-savvy people not to be frightened of them.
    This is all very well in its way, but in these two particular cases the result is unfortunate, particularly for experienced users, and it really ought to be possible to choose between the looks (as you can with the Mail layouts), even if the skeuomorph is the default.

  • Hello. It can be a iPhone4 accessories for the one with pictures and other things are transferred wirelessly to a TV? Thank you

    Hello. It can be a iPhone4 accessories for the one with pictures and other things are transferred wirelessly to a TV? Thank you 

    You need an Apple TV to be able to wirelessly send pictures etc. from iPhone.
    However you can buy an adapter if you want to connect to a TV
    http://store.apple.com/us/product/MC953

  • Logs are generating with owner and group as 'root'

    Hi,
    In our newly installed and configured Oracle application server(10.1.3.5), the logs are generating with owner and group as 'root'.
    Location: $ORACLE_HOME/Apache/Apache/logs
    -rw-r----- 1 root root 6700 Apr 3 02:03 access_log.1364947200
    -rw-r----- 1 root root 430 Apr 3 02:04 error_log.1364947200
    We have configured it on port 80. For this the '.apachectl' ownership and permissions are changed as below:
    -rwsr-s--- 1 root dba 1703780 Jul 21 2009 .apachectl
    Kindly let me know what are the changes to be made, for the logs to be generated with the group as 'dba' instead of 'root'.
    Thanks.
    Edited by: 985284 on Apr 3, 2013 3:14 AM
    Edited by: 985284 on Apr 3, 2013 4:22 AM

    Ok - that is quit weird then. If you want to run the HTTP Server on a privileged port, you basically change the ownership of the .apachectl executable :
    cd ORACLE_HOME/Apache/Apache/bin
    chown root .apachectl
    chmod 6750 .apachectlas per [url http://docs.oracle.com/cd/B25221_05/core.1013/b25209/ports.htm#CIHJEEJH]documentation.
    Your user and group directive should be set to :
    User oracle
    Group dbaUpon starting, the http server would start as root and then switch the effective userid of the process from root to oracle. In the process list (ps -ef | grep httpd), you should see oracle.
    Do you have the same configuration and what do you see in the process list?

  • Can I create a muse web site for someone else and allow them to make edits to site. Example to update gigs for a musician web site.

    Can I create a muse web site for someone else and allow them to make edits to site. Example to update gigs for a musician web site.

    Yes, you can. Sites published with BusinessCatalyst or to an FTP host can be edited by clients. Here is a short tutorial about the new In-Browser Editing feature: In-browser Editing | Adobe Muse CC tutorials

  • Saving interactive forms with data AND then performing further edits

    I need to produce a series of interactive PDF application forms which are long and quite complicated.
    This being the case, is it possible to save the file in it's partially completed state and close it down then at another time re-open and continue to fill out the remainder of the form? I have extended features in Acrobat 9 to allow the user to fill out the form and save their changes, but when the people helping me test this re-open the form to continue, they get the message:
    "This document contained certain rights to enable special features in Adobe Reader. The document has been changed since it was created and these rights are no longer valid. Please contact the author for the original version of this document."
    The form is now locked and flattened with no live form fields on it.
    To complicate matters, it doesn't work on the PCs in my office but I can do further editing after a save on my own computer - could that be something to do with Acrobat versions or is it maybe because I am the auther of the form?
    Thanks for any advice you can give me.
    Dan Mason

    Hey guys,
    thanks for your fast reply!
    @ Chintan:
    I searched all through the wikis, blogs, forums etc. and I really couldn't find any example for the issues I tried to describe (maybe that is a problem?). If you have already read some threads about this theme, could you please point me to one? That would be really great!
    @ Otto:
    Maybe that could work, but I would like to leave out all the function module stuff. I'm dreaming of a direct connection between MII and the ADS. As I understood, the ADS and the PDFObject (wherever it comes from) are communicating via Webservice, that is not directly usable by other frameworks. I think that's the main problem?! So it's only possible to build a PDF object in ABAP or WebDynpro Java, that automatically communicates with the ADS and it's only initiatable via remote function call?!
    Thanks and regards
    Anika

  • Build multi-product contest entry form with payment

    I have a client that wants to build a contest entry form that allows the user to enter multiple products with details and totals the amount for payment in one form. Each product that will be entered into the contest will have the same price of $60.
    First of all, is this possible without setting up products in the eCommerce module?
    My idea was to have the users go through a multi-step form to enter the contest. EX: Step 1. Contact Information | Step 2. Company Details | Step 3. Product registration | Step 4. Payment  | Step 5. Confirmation/Packing Slip.
    Step 3. Product registration - I was hoping the user can click a button for each item which will give him the option to enter a product and detail information for the submission. If he wanted to enter more than one product, he could click an "add more" button to generate another entry area for submission.
    Step 4. Payment -  The user will be given the total amount to pay depending on how many products he has submitted into the contest.
    If anyone has a suggestion or idea on how to implement this type of entry form, I would love to hear your comments.
    Thank You

    Mario, IF he uses the eCommerce you can not change the amount field on the registration buy form.
    If he goes with a seamless payment gateway and a custom form for this and web apps he can go to town with your suggestions and more
    For you guys:
    https://austpayoll.worldsecuresystems.com/events/payroll-conference-melbourne
    This knows when you are on early bird or not, charges extra for AMEX and more.

  • How can I build a drum pattern in Ultrabeat with my midi keyboard?

    So I was just wondering if I was able to build a drum beat in Ultrabeat with my midi keyboard, kinda "on the fly" as it's replaying..... For example, if I want to add some percussion in the pattern but while it's playing. Is there any way that Ultrabeat can just record in items I want via the midi board instead of clicking on the part with my mouse? It would just be much easier this way.... Thanks!

    It's a shame you can't record into Ultrabeat's sequencer in realtime using a MIDI controller.
    But, as CCTM says you can record into Logic's Arrange and other Editors. One to use may be the Hyper Editor. Not as pretty to look at but very similar in functionality to UB's seq.
    If you need to manage your recorded sequences you can always add the recorded region to your Apple Loops Library.
    JG

  • Can i disable having to log in to windows 7 and hotmail

    How can I change my settings for auto log  in to windows 7 and my hotmail accout
    This question was solved.
    View Solution.

    AOZ-
    Thanks for the links. I liked the forum and saved it to favorites. It did work and so simple..
    Peace to you...Slamina

  • Dynamic Input form with PLAN and Actual Confusion (YEAR-row / MONTH-Column)

    Hi Guru's,
    Assume that
    Row Axis: YEAR
    Column Axis: MONTH
    Page Axis: VERSION
    From the VERSION dimension, we re able to get Budget Year and the latest Actual Month.
    For example, As u see below, the budget year is 2014 and we retreive + or - 2 years of budget year which is 2014.
    And the latest actual month is Jun.
    So is it possible to make a dynamic report that can retreive actual data for the budget year and latest actual month of selected VERSION and also rest of the cells should be inputtable.
    By the way, we have a dimension which named as for the PLAN , ACTUAL etc.
    So what do you suggest for that case?  Is there any way to handle without VBA?
    Thanks to all in adv.
    MONTH / YEAR
    Jan
    Feb
    Mar
    Apr
    May
    Jun
    Jul
    Aug
    Sep
    Oct
    Nov
    Dec
    2012
    2013
    2014
    2015
    2016

    Hi Sadi,
    I agree Vadim, you do not need extra dimension for time. You can "report" in Bex analyzer with this format but BPC reporting/input schedules is not dynamic enough. Because you can not use property in axis but in Bex it is possible. Maybe you can change input form design because where is other contex in your form, 2012.01 what, price or stocks or sth? You have to specify account and entity. I think  it is useless design to input data. I added figure for sales model. In this figure, you can manage actual / budget with "if" and "today" excel formulas. And you can easily link your olap member in column axis. I think it will help you.
    Best regards
    Haşim.

  • Contribute 6.5 can not ftp after years of no issues with CS4 and CS5

    The problem
    Contribute 6.5 can not connect via ftp using settings that formerly worked (and still do) in CS4 and CS5.
    How we ended up here
    I am the administrator website where
    Our content editors have been using Contribute CS 4 and Contribute CS 5 without issue, 6+ years.
    We are trying to upgrade to CS 6.5 to better support HTML5 markup now used within the site.
    When attempting to configure a website connection in 6.5, Contribute alerts:
    "Contribute cannot find the website files on the server. Please contact the website's administrator for assistance."
    After closing the dialog box the failed connection is removed from contributes website connection list.
    We have a shared hosting account and utilize ftp to publish changes.
    Server is Win2008 with IIS 7.5
    Again it's shared hosting, so read/write ftp are scoped to our account's directory.
    We attempted this on serveral pcs including on a PC with a fresh install of Windows 7.
    We can still connect successfully via ftp with CS4, CS5, dreamweaver, and Filezilla.
    Which is why I believe this to be a Contribute 6.5 issue.
    I've attempted the following troubleshooting articles:
    Use network I/O logging to log operations, identify problems
    I compared the I/O logging for both CS5 and CS 6.5 which both appear to log the same diagnostic steps.
    Contribute FTP Server Checker (quite dated)
    All successes reported. No failures.
    Troubleshooting a Connection CS4 (linked from with CS 6.5's help UI)
    As indicated above, alternate FTP clients have no issue.
    This appears to be similar issue to the following posts:
    5301620 - HELP - FTP Connection Error with Contribute 6.5
    5907180 - Contribute 6.5 can no longer connect to sites ...
    Unfortunately, there has been no solutions posted on either of these threads.
    Any help would be greatly appreciated.
    I can PM the network I/O log details if there is adobe staff who can get them in the right hands.
    (Again the logs only show successes.)

    @Zaldomoh
    Have you found a solution or been given assistance from Adobe to resolve this issue? I'm having the same problem (CS 6.5 ftp'ing to a shared hosting enviroment). Details of our situation can be found on thread 1384686

Maybe you are looking for