What application can I write html in?

Hey, I was a windows user, and I used notepad to write HTML. What program on the mac is capiable of doing that?
Sorry, I couldn't find a previous thread on it.

http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/6404000/wo/1i4Jt 1A4K2P12lDcQyizUDwg2eg/1.0.19.1.0.8.25.7.11.5.3
there's an application for HTML

Similar Messages

  • What code can i write for this?

    unction Name : ZXXx_Update_Contact
    Hi,
    I need what parameters and tables can use for this requirement.
    What code can i write?
    Function Name : ZXXx_Update_Contact
    Use BAPI_BUPA_CENTRAL_CHANGE as a starting point for updating the business partner
    Business Partner = contact number
    Complete the following for any changed fields
    CentralDataPerson_X - This is a set of switches telling the function what to update
    CentralDataPerson - Firstname & Lastname
    Use BAPI_BUPA_ADDRESS_CHANGE for address changes
    Business Partner = contact number
    Address data - city
    Address data_X - X in city field
    BAPIADTEL first entry - Telephone(Business land line number),Con-001
    BAPIADTEL second entry - Telephone(Mobile number),Con-002
    BAPIADTEL_X first entry - X in Telephone and Con fields
    BAPIADTEL_X second entry - X in Telephone and Con fields
    BAPIADSMTP - e-mail
    BAPIADSMT_X - X in e-mail field
    Early reply is highely appriciable.
    Regards,
    chow.

    Hi Nishu,
      There is no way you can validate the fields and their lengths before you ipload them into internal tables.
    First you should upload them and then loop the intrenal table to delete such records.
    loop at itab.
    if strlen(itab-comp_code) < 4.
    delete itab index sy-tabix.
    endif.
    endloop.
    Regards,
    Ravi

  • How can I write HTML code in this forums

    Sorry but I didn't know where to post this thread.....
    How can I write HTML code in this forums?

    Hello,
    Every piece of code in your post should be wrapped with the forum tags [ code] and [ /code], without the blanks.
    In case of the &lt;a> tag, that is not enough. In this case, you have several options. The most elegant one is to use the entity name for the less-then sign - & lt; - without any spaces. Other options is to add a space between the less-then and the ‘a’ character (and make a note of it) or change the less-then character with a left bracket one.
    When posting code, you should always use the forum preview option, just to make sure the forum software “understood” your code correctly.
    Hope this helps,
    Arie.

  • What application can you use to open a file with the .acc extension?

    What application can you use to open a file with the .acc extension?

    http://www.fileinfo.com/extension/acc

  • Can i write Html code inside JSP method???

    hi i am newbie to jsp and servlets. i am working on a project where i have to use same html code for two conditions in jsp. my question is can i write that html code inside any method in jsp?? and then can i call that method within that if and else scope. can anyone help me with this??

    I don't think that does what you think it does.
    <%!
    void renderStateSelect(String default) { %>Creates a method with that signature and an open brace...
    <select name="state"> puts:
    out.println("<select name=\"state\">");
    into the _jspService method
    <%!
    // logic to loop thru states
    %>Puts the loop logic after the brace opening up the method renderStateSelect
    </select>puts
    out.println("</select>");
    in the _jspService method
    <%!
    %>Closes the renderStateSelect method.
    So if I do this:
    <html>
    <body>
    <%!
    void renderStateSelect(String def) { %>
    <select name="state">
    <%!
    // logic to loop thru states
    %>
    </select>
    <%!
    %>
    Hello<br/>
    <% renderStateSelect("none"); %>
    Everybody
    </body>
    </html>The html output is:
    <html>
    <body>
    <select name="state">
    </select>
    Hello<br/>
    Everybody
    </body>
    </html> The 'renderStateSelect method does not render the state select. The _jspService method does, in place where the HTML is written in the JSP file.  As another look, the translated servlet looks like this:
    package org.apache.jsp;
    public final class IsThisOk_jsp extends org.apache.jasper.runtime.HttpJspBase
        implements org.apache.jasper.runtime.JspSourceDependent {
    void renderStateSelect(String def) {
    // logic to loop thru states
      public void _jspService(HttpServletRequest request, HttpServletResponse response)
            throws java.io.IOException, ServletException {
        try {
          out.write("<html>\r\n<body>\r\n");
          out.write("<select name=\"state\">\r\n");
          out.write("</select>\r\n");
          out.write(" \r\nHello<br/>\r\n");
    renderStateSelect("none");
          out.write("\r\nEverybody\r\n</body>\r\n</html>\r\n ");
    }See. Any plain HTML code you put outside of the <%! %> tags is converted to out.printlns inside the _jspService method (in place where they occured in the JSP, not where the method you want to do the rendering is called...)
    So unless I completely misunderstood your intent here, this apprach does not work.

  • Why Flex: What Flex can do, but HTML/AJAX can not?

    I want to understand the position of Flex in RIA competition. I used Flex because of AdvancedDataGrid and the Charts. It is impossible for HTML to do some thing like these.
    The Transition Effects are nice, but not important in enterprise environment. The initial loading time of Flex is much longer than that of HTML although Flex is more reponsive than HTML/AJAX after Flex is loaded.
    Any comments?

    It's not always about what it can or can't do--a lot of this is about doing the same thing better.  And think about the origins of Ajax--it's basically a hack.  I know the same can be said about a lot of technologies (even the Internet itself), but why use something that is essentially a hack when you have technology that was engineered for the purpose you have in mind?  Building hacks and fixes upon more hacks and fixes is how we end up with a pile of junk at the end of the day in IT.  It's time to start calling things what they are, hacks, if they are that.
    Flex has better performance, if you make use of AMF.
    HTML and Ajax can't use AMF and has no counterpoint in this area. AMF is much faster than the crummy Ajax hack can muster (especially once you start throwing crap like Dojo into the mix).
    http://www.jamesward.com/blog/2007/12/12/blazebench-why-you-want-amf-and-blazeds/
    Check AMF times compared to JSON Ajax times, bandwidth.
    Flex doesn't care about the user's browser.  Sure, the HTML/Ajax hack has frameworks to help you deal with that, but do you really want to worry about upgrading that trash (or framework bugs) when a new version of IE, or Opera, or Firefox, or Chrome, or Safari, or even another browser comes out and breaks something?  A newer version of Flash won't break a Flex app.  Also, other than Chrome, other browser JavaScript implementations are slow, slow, slow.  The more complex your Ajax app gets, the slower it will become--that's lame.
    User experience. A well designed Flex UI is much nicer and easier to use than even the best "JavaScript/DHTML" hackfest.  Just look at these new Adobe forums--JavaScript out the wazoo and they suck on anything other than Google Chrome.   It's useful for marketing too--not just for commercial stuff, but marketing to upper management for enterprise applications.  Everyone that looks at a well designed Flex app will be blown away by it.  And then you get your pay raise.  (lol - assuming it works, too)
    Superior development experience and development time.  Using Flex Builder you can mock up an entire "seemingly functional" prototype application within a ridiculous amount of time.  You can even run it without a back end or a server of any kind, just a standalone Flash player or browser.  You also have the GUI design mode, that shows you exactly what the user is going to see in the browser--no matter what browser they have, no matter what their settings are, etc.  No more HTML crap to deal with or (God forbid) tehnologies like JSP to generate your dinosaur code.  Documentation goes from the kludge of junk out there for HTML/Ajax/JS/etc to the excellent and very Javadoc-like ASdoc.
    And no more choosing between the dozens of hacky and crummy Ajax "framework" patchworks out there, that are needed to workaround all the problems you'd run into without a framework.
    That's just what I can recall at the moment.  I will NEVER go back to that God-awful Ajax/HTML hackfest people are calling RIA development.  Sure, Flex has it's issues and downsides too, but they aren't usually major enough to be of concern, even in an enterprise environment.
    BTW - It's not really Flex vs. HTML/Ajax.
    It's more like Flex vs. HTML/DHTML and AMF vs. Ajax/JSON.  But, Flex can talk to Ajax too, and it can even be embedded in HTML.  Although personally I feel that's a bastardization of the technologies, sometimes I guess people have a need to do these things.

  • Applications can't write the download update in the applications directory

    I migrate from a 24" iMac to a MacBook Pro, from Leopard version 10.5.2 to 10.5.2 Something went wrong, the assistant create a new user and I deleted it and the User folder for that user, as a result (I guess) the applications that migrate from the iMac can't write the updates (authorized to download) in the Application folder or in the Application support folder.
    Perhaps when I try to create a new admin account, the form don't let me use my prior short name as a login admin, it tell me that already exist although is not there.
    Only Adobe software updates ok because is the only one that ask for a different location because it can't write to my prior home folder (I deleted it!).
    Just to make things worse, I open the info for my Applications Folder and the Applications Support Folder, and change the privilege for my self to read and write, also for everyone and apply to all items include.
    There is something I can do to go back to normal? without painful reinstallation?
    thank you in advance for your help!

    I am running the commands
    sudo chmod -R -N /Applications
    sudo chmod +a "everyone deny delete" /Applications /Applications/Utilities
    Before I run
    sudo chown -R root:admin /Applications
    sudo chmod -R +rX /Applications
    sudo chmod -R ug+w /Applications
    The sudo commands suggested by Király
    As right now terminal show:
    Last login: Mon May 5 23:30:46 on console
    Ordenador-de-Francisco-Delgado-Flores:~ delga2$ sudo chown -R root:admin /Applications
    WARNING: Improper use of the sudo command could lead to data loss
    or the deletion of important system files. Please double-check your
    typing when using sudo. Type "man sudo" for more information.
    To proceed, enter your password, or type Ctrl-C to abort.
    Password:
    Sorry, try again.
    Password:
    chown: /Applications/QuarkXPress 7.01/Required Components/Profiles/QuarkGenericCMYK.icc: Operation not permitted
    chown: /Applications/QuarkXPress 7.01/Required Components/Profiles/QuarkGenericGray.icc: Operation not permitted
    chown: /Applications/QuarkXPress 7.01/Required Components/Profiles/QuarkGenericLab.icc: Operation not permitted
    chown: /Applications/QuarkXPress 7.01/Required Components/Profiles/QuarkGenericRGB.icc: Operation not permitted
    chown: /Applications/QuarkXPress 7.01/Required Components/Profiles/QuarkXPressLegacyCMYK.icc: Operation not permitted
    chown: /Applications/QuarkXPress 7.01/Required Components/Profiles/QuarkXPressLegacyRGB.icc: Operation not permitted
    Ordenador-de-Francisco-Delgado-Flores:~ delga2$ sudo chmod -R -N /Applications
    sudo chmod +a "everyone deny delete" /Applications /Applications/Utilitiessudo chmod +a "everyone deny delete" /Applications /Applications/UtilitiesOrdenador-de-Francisco-Delgado-Flores:~ delga2$
    Ordenador-de-Francisco-Delgado-Flores:~ delga2$ sudo chmod +a "everyone deny delete" /Applications /Applications/Utilitiessudo chmod +a "everyone deny delete" /Applications /Applications/Utilities
    And nothing els is happened. Should I wait?

  • What application can I use to open a .tmd file?

    Received a file with .tmd extension and don't know what application to use to open it.  Any advice?
    Thanks!

    http://www.solvusoft.com/en/file-extensions/file-extension-tmd/

  • Applications can only write to home directory...[SOLVED]

    ...if logged in as root
    I'm sure that this topic has be covered before, but I just cant find anything.
    When I'm logged in as root, all applications work fine but when I'm logged in as myself most applications moan about not being able to create a directory.
    For example if I start Geany, it complains:
    Configuration directory could not be created (Permission denied).
    There could be some problems using Geany without a configuration directory.
    Start Geany anyway?
    Epiphany had the same issue so I manually created the .epiphany directory/folder that it wanted to write to.
    I'm sure its a permissions issue, but i can set my home dir to chmod -R 777 ... and the applications still complain
    > groups gary
    root wheel network video audio floppy storage users
    I added myself to the root group, still no joy.
    What do I need to do? Is there some group that I need to add to the user?
    Many thanks in advance,
    gazza
    Last edited by gazza (2009-12-01 16:33:28)

    thanks everyone.
    I had a play and changed the owner to root and then back to <user> (using chown -R <name>) .
    Started geany no complaints, started ooffice no complaints
    problem solved.
    BTW I was refering to ~ rather than /home
    I must have caused the problem by renaming/ creating directorys while acting as root.
    Last edited by gazza (2009-12-01 16:02:05)

  • What applications can open a Domain.sites2.zip file?

    I am hoping someone out there in the Mac community can help me:  I'm taking over a website that was created with iWeb and someone has given me what seems to be a totally unusable "zipped" version of the site.  I can't make heads or tails out of it.  They said that iWeb does not import files, so presumably even if I get iWeb and try to use the file, it isn't going to work.  But the export function must exist for some reason, right?  :-)  Presumably there are other software options out there that can open this and perhaps using them I can re-export it into standard HTML?
    I generally run Linux and would ideally like suggestions as to what Linux program I should use to open this...but if that's not possible, any help would be great.  I really appreciate any and all help or suggestions.  Thank you!

    Firstly, do you have a Mac and are you using a Mac that has iWeb on it?  It would seem so from your profile as you have iWeb 08 at the bottom and Mac OSX 10.6.8?
    If so all you have to do with any zipped file is double click it and it will unzip, so if you double click on a zipped domain.sites file, it will unzip and you are then left with the domain.sites file.
    The application that will open a domain.sites file is iWeb and only iWeb.  On your Mac, all you need do is place the domain file in the same place that it normally resides which is under User/Library/Application Support/iWeb/domain.sites and then double click it and iWeb will open it.
    You say that you are using iWeb 08?  In this case, you need to ensure that you are using iWeb 08 or above - IWeb 09 on your own Mac so that you can open the domain file - domain files are not backward compatible.
    It is correct that iWeb CANNOT import files - iWeb has no import facility for html files - it is unable to open a site that has been published being html and css.
    What you have been given is the domain.sites file that iWeb most definitely can use and open - the domain file is NOT and html file and contains all the data that iWeb can use and that is why you have been sent the file because iWeb can use this file. 
    There is no export facility as you put it in iWeb, but there is a publish to a local folder option that is used to publish your site and then upload it to a server.
    Generally, iWeb sites do not import well into other programmes so if you want to do this, then it would be best to re-build the site using another programme, but if you have a Mac running iWeb, then just double click on the zipped file and it will open it and iWeb will then open the domain.sites file.

  • HT204382 What application can I use on my Mac to view .flv files?

    How can I view .flv video files on my Mac? 

    Perian codecs for Quicktime - http://www.perian.org - plugins to add functionality to Quicktime for playing additional audio and video formats. 2012- No longer being developed but may still work.
    Quicktime audio problems, Perian, VLC - http://discussions.apple.com/message.jspa?messageID=9013669 - read note about uninstalling prior DIVX support before installing Perian.
    VLC media player - http://www.videolan.org/vlc/ - general media player that plays just about anything.
    Niceplayer - http://code.google.com/p/niceplayer/

  • What applications can I use to make an A2 or A3 poster?

    Word will only let me go up to A4 and I need to make this poster for a uni project so any help would be appreciated
    Thanks
    Jo

    You mean the phase pumping? Or are you just looking for an old TV (bad reception, video tape) effect? For the latter, do a search on Google. There's a ton of tutorails and presets for it. For a simple phase pumping, you only need to move a gradient infinitely acrross the screen, which can be done easily with a pre-composed Ramp effect and a Motion Tile on top of it. And before you get too creative changing the direction: remeber, that the cathode's electron ray strictly travels top to bottom, so any angular behavior is merely caused by the time differential between the lines, not the ray doing a limbo dance or something...
    Mylenium

  • Write HTML Files from java application

    Hello,
    i have to write HTML files from a java application.
    I am asking if anybody can give me a hint about a good simple solution (library) which can do some of the job for me.
    i know FOP for example is good to create pdf or html from xml, but i dont want to go via xml.
    the sites i need are really very simple presents emails.
    body and maybe a link for next and pervious.
    however, thank you in advance.
    a little hint will also help :)
    Sako.

    That, too, is my question.
    Be the "server" local or remote, wouldn't JSPs still
    be the easier solution? No. it will not. because you need a server. Server for a stand alone application is not esier. according to who said JSPs are easy?
    Its very very difficult.
    >
    When answering, please clarify. I'm a bit of a newbie
    here. :)To get sence about how hard is JSP, check Struts. this is very good open source Framework to simplify the JSPs. but it still complecated enough.
    or Tapestry my lovely open srouce Framework.
    its easier than Struts. but sill complecated because of the documentation.
    All in all, using JSP is the purpose of Java in the internet. but not for me. My application will not be available in the internet, i.e. no server, i.e. no need for JSP.
    i hope that helps a little.

  • How  we can use forms HTML capabilities with Oracle Applications?

    Hi
    Could not find any specific doc how we can use forms HTML capabilities with Oracle Applications?
    Thanks

    I'm not sure that I understand exactly what you are asking?
    What are you trying to do? If you could give a detailed explanation then we can try and assist.
    Reagrds,
    Bren

  • TS1436 I received this message twice on 2 new & separate attempts to burn a playlist to a NEW cd:  "The attempt to burn a disc failed.  The burn failed because of a medium write error."  What is a "medium write error" and how can I deal with this?

    I received this message twice on 2 new & separate attempts to burn a playlist to a NEW cd:  "The attempt to burn a disc failed.  The burn failed because of a medium write error."  What is a "medium write error" and how can I deal with this?

    Hello Pat,
    The following article provides troublehsooting steps and information that can help get iTunes burning discs again.
    Can't burn a CD in iTunes for Windows
    http://support.apple.com/kb/TS1436
    Cheers,
    Allen

Maybe you are looking for

  • Can I use the same serial number for windows and mac?

    Hi I brought the Adobe Creative Suite 6 DesignandWeb Premium for windows and have been using fine on my PC. I now want to by a MAC laptop - can I use the same serial number and just go online for the MAC version download?

  • Is there a way to customize Automatic Import?

    I really like this feature, but is usually reaches a certain cut in the mini DV it doesn't like, and stops/rewinds. I get back to my iMac with a "38 minutes of video were imported" message for a 60 minute tape. Is there a way to tweak the 'automatic'

  • Import Duty & CVD CESS

    hi friends i want to maintain Edu cess & Higher Edu cess for 1)Excise duty 2)sevice tax 3)custom duty & on 4)CVD iWANT TO KNOW Which condition Type used for All Above (specific) & i dont have any of condition type *_which   Patch  I have to  Uplad_*

  • Can't open e-mail link and other problem

    I got following problem even one just encountered before sign in. 1. I want to sign in clicked on I already have an account but did not work and have to click on Signin/Register tab any way my main problems. 2. When I get an e-mail and if there is ur

  • HELP IN ALV

    hI I WANT TO INSERT A BUTTON TO ALL THE RAW OF THE ALV. I USE CLASS CL_GUI_ALV_GRID HOW CAN I DO IT? Myabe tou can send an example THANKS