Editing a Web page in External Application

I am using Macromedia Contribute 3 and trying to edit the HTML code on a page by using the "Edit Page Source in External Application" option under File>Actions. It has worked in the past but now the "Edit Page Source in External Application" is grayed out. Any solutions? I know that I am connected to the website. Thanks.

Hi There,
Greetings from Adobe.
To make that option is available, make sure the role to which you're assigned allows it. If you can't update this setting, ask the person who is assigned as website administrator.
You will find that option under Edit > Administer Websites > Edit Role Settings > Editing > Allow users to edit a web page source in an external application.
Regards,
Ajit

Similar Messages

  • Web pages in Oracle Application 12.0.6

    Hello every one.. i am having a one problem.. i want to create the SSHR LOGGING report.. in which i want to show the list of employees how have visited the application... this is the following query :
    SELECT
    p.employee_number employee_number,
    p.first_name || ' '|| p.last_name Name,
    u.user_name Login_name,
    u.email_address,
    a.start_time login_dates,
    u.last_logon_date,
    tl.responsibility_name
    FROM
    FND_LOGINS A ,
    fnd_user u,
    per_all_people_f p,
    fnd_login_responsibilities s,
    fnd_responsibility t,
    fnd_responsibility_tl tl
    WHERE
    u.user_id = a.user_id
    AND A.START_TIME >'20-NOV-09'
    and s.responsibility_id = t.responsibility_id
    and t.responsibility_id = tl.responsibility_id
    and s.login_id = a.login_id
    and u.person_party_id = p.party_id
    and tl.responsibility_name in ('JBL Employee Self-Service','JBL Employee Self-Service (CE)','JBL Employee Self-Service (JAS)','JBL Manager Self-Service','JBL Manager Self-Service (Admin)','JBL Manager Self-Service (JAS)','Notification')
    and sysdate between p.effective_start_date and p.effective_end_date
    and nvl(p.employee_number,'1') = nvl(nvl(:p_emp_no,p.employee_number),'1')
    and to_CHAR(a.start_time,'RRRR/MM/DD HH:MM:SS') between :P_DATE_FORM AND :P_DATE_TO
    order by
    2 ,a.start_time desc
    Now problem with this is that.. its not showing the rercord of the person.. how have visited the web pages in Oracle Application R12.. like we have Leave Management web page in this 'JBL Employee Self-Service' responsibility.. please help me that how and by using what table in can view webpages visiting data as well

    Hi,
    Please see if the queries in these documents helpl.
    Note: 295206.1 - How to Count Total Number of Users Connected to ORACLE Application
    Note: 471673.1 - R12.0.6+ : Oracle Application Object Library Active Users Data Collection Test
    Thanks,
    Hussein

  • Editing LR Web Pages

    I used photoshop to make a web site and the pages make sense in Dreamweaver.
    But the LR pages aren't anything I can make sense of. The images look like they are stacked on top of each other.
    Have others been able to successfully edit LR web pages? Suggestions?
    Thanks!
    Reid

    Yes, I edited them but not in Dreamweaver. It's not my favorite web development tool, but then again I don't HAVE a favorite because no one makes what I want, but that's another story. It shows up OK in the tool I prefer, ancient though it is.
    But I see what you mean with Dreamweaver! Even the footer is right on top of the other elements. I have an old Dreamweaver, it's MX.
    That said, I would imagine you wouldn't be fiddling with the placement of every element, would you? You would be playing with the headers and footers, I imagine. And making an overall page to link in your various LR pages?
    If you look at it in code view, it's pretty nicely laid out so you shouldn't have trouble finding your way around.
    I decided not to use LR for web galleries, rather to use a database driven program on my server, Gallery 2. But that was because I wanted more flexibility.
    Judy

  • Editing  a web page

    Is it possible to save and then edit a web page, deleting what I don't want to send to another person ?
    Thanks

    There is no editing module in Safari as such (as in Mozilla, for example), but you can copy and paste the content to your email message (but that's only good for the text). That's what I usually do.
    Otherwise, you can print into a PDF file and use this, but you'll need a PDF editor, such as Acrobat (the pro version).
    Hope this helps;

  • How can a customer edit a web page that I have made?

    How can a customer edit a web page that I have made?  The customer should edit the text or pictures by himself. Is this possible? 

    First you can search in this forum "in browser editing".
    Second you may be interested in this video:
    http://tv.adobe.com/de/watch/designtools-in-der-creative-cloud/bearbeitung-im-browser-in-a dobe-muse/

  • Problem with Web Clipping and External Application

    When I use Web clipping with INLINE rendering on usual sites I can move under links, not leaving a portal.
    But if I try to make it via the self-made provider with External Application then links do not work.
    I press them and it appear in the same place!
    Authorization via External Application passes successfully, that is the page is displayed correctly.
    But links do not work.
    In what there can be a problem?
    Oracle Application Server 10g Release 2 (10.1.2)

    In order to prevent some urls and internal websites from being cached use url bypassing. This way these urls will not be cached and the users can directly use them without being asked to log in.
    To enable transparent error handling and dynamic authentication bypass, and to configure static bypass lists, use the bypass global configuration command. To disable the bypass feature, use the no form of the command.

  • Using Dreamweaver to edit *partial* web page (chunks of HTML code)?

    Hello,
    I am using a custom PHP framework to build a website.
    This framework is quite simple, it relies on 2 types of files:
    Templates: site-wide PHP/HTML files including all the logic, HTML header (links to CSS & JS files), Company logo HTML menus & related navigation code, searchbox, footer etc. Only 2 templates exist: one for the homepage, another one for all the other pages.
    "content files": these files contain mostly static HTML code. Content files are imported by the PHP template using PHP's include() function.
    As content files are inserted within a global HTML page, these only  contain chunks of HTML code: no tags such as "head" "body".
    On the attached PNG, the green part is the code from the template, the red part is the code from the "content file".
    A typical template file would be:
              <html>
                <head>
                  (load CSS files, JS files...)
                </head>
                <body>
                  (HTML headers & menus)
                  <?php include($content_file); ?> <!-- Includes partial HTML file with page content -->
                  (HTML footer)
                </body>
              </html>
    A typical content file would be:
              <h1>TITLE</h1>
              <h2>subtitle</h2>
              <p>Lorem ipsum<img src=""  class="myimg" /></p>
              <h2>subitle</h2>
              <p>Lorem  ipsum</p>
    Templates are NOT editable by users.
    Content files are editable by users, using Dreamweaver.
    The problem is, users cannot edit those content files since it is not a valid HTML page. The CSS required to enforce the styles are not loaded since HTML headers are not present. It looks ugly and Dreamweaver tries to insert standard HTML tags such as <html>, <body> and so on.
    I see 2 hypothesis, but I cannot find an answer in the Dreamweaver documentation:
    have DW edit the content files alone, in which cas we would need to tell DW that it is editing a partial web page and not a full one
    have DW edit the content file while applying the PHP template, in which case we would need to tell DW that is should discard most of the code and save only the "content file"
    Hypothesis 1: Standalone edit of content files. Is there a way to tell Dreamweaver
    that it is editing a partial HTML file,
    that it needs to load additional CSS stylesheet to display the styles
    that it should not insert standard HTML body and headers tags, that we know the page is not standard compliant as-is
    that creating additional style is forbidden, it is only allowed to use styles defined in the stylsheet
    Hypothesis 2: Edit of content files within the template. is there a way to tell Dreamweaver
    that it is should add HTML code from the template before and after the loaded "content file"
    that when saving the "content file" it should discard all HTML/PHP code from the template, saving only the content itself
    that creating additional style is forbidden, it is only allowed to use  styles defined in the stylsheet
    I cannot believe noone has been faced with this problem before, the fact is I cannot find any answer about this issue.
    Best Regards,
    M

    I have moved this thread to the Dreamweaver Application Development forum, which deals with PHP and similar issues.
    Several things spring to mind.
    Do your template files have a standard .html file name extension? If so, you could add .html to the file types that Dreamweaver does not automatically rewrite. Select Code Rewriting in the Preferences panel, and add .html to the list of files in "Never rewrite code".
    If your template files use a file name extension not recognized by DW, add them to the list using the instructions in http://go.adobe.com/kb/ts_tn_16410_en-us. You might also need to add them to the list of files that DW doesn't rewrite.
    To get access to styles in pages that are composed of fragments, use Design Time Style Sheets. See http://help.adobe.com/en_US/Dreamweaver/10.0_Using/WScbb6b82af5544594822510a94ae8d65-7e17a .html.

  • Loading web pages from an application

    Hi All
    I've tried hunting on this web site for info about how to show an html page from an application. Unfortunatley I couldnt find anything.
    So how do I fire up a web browser, and load in a specified web page?
    I can get a URL pointing to a file on my system ie File:c:/MyDoc/Help.htm, but am unsure what I need to do next.
    Any advice welcome.
    Cheers

    From an applet? - I assume this is a java web app ...
    import java.awt.*;
    import java.awt.event.*;
    import java.net.*;   
    public class URLCheckBox extends java.applet.Applet implements ItemListener {
       Choice chqbx = new Choice();
       Label lblOutput, lblfalse;
       URL url; 
       public void init() {
           this.setLayout(new FlowLayout());
                   chqbx.addItem("URL link to ..."); // add URL names here eg: www.yahoo.com/
           chqbx.addItemListener(this);
           setFont(new Font("Arial", 0, 18));
           setForeground(new java.awt.Color(255,255,55));
           setBackground(new java.awt.Color(95,100,215));
           lblOutput = new Label("Link to other web pages: ");
           add   (lblOutput);
           add(chqbx_MMedia);
           chqbx_MMedia.setForeground(new java.awt.Color(210,210,255));
           chqbx_MMedia.setBackground(new java.awt.Color(50,50,95)); 
       public void paint(Graphics g) { // this just makes it look pretty!
          g.drawRect(2,2,216,196);
          g.setColor(Color.white);
          g.drawRect(4,4,212,192);
          g.setColor(Color.blue);
          g.drawRect(6,6,208,188);
          g.setColor(Color.white);
          g.drawRect(8,8,204,184);
          g.setColor(Color.gray);
          g.drawRect(10,10,200,180);
       public void itemStateChanged(ItemEvent e) {
           String URLstr = "http://";
           String selection;
           selection = (String)chqbx.getSelectedItem();
           String urlText =  URLstr + selection";
              try {
                 url = new URL(urlText);        
                 getAppletContext().showDocument(url);
              catch(MalformedURLException ignore){ }
    }

  • Looking for an answer about editing a web page on two computers.

    I have an iMAC at home and at work. Can I edit my iweb webpage from both computers? If so, how? I can't figure out how to save my web page to my idisk or anywhere else so I can access it from another computer. I do have a .mac account. Can I save it there and access it from there to edit it? Any help would be great. Thanks.

    Try the instructions in this article.
    (23717)

  • How to include other site web page in my application?

    I have a web page lists all payment methods, when user select one of the payment type and then click the submit button, it will re-direct to the third party site for the payment. But I want to have my header in the third party web site, this means that I only change the content in my web site to the other site. How can I do this? I'm using JSF + Tile. Thanks

    I means include the web page which is come from other site in my application body.
    The layout is:
    | my company heading |
    |-------------------------------------|
    | |
    | body(payment web site) |
    | |
    |-------------------------------------|
    | my company footer |
    The customers will feel that they are doing the payment on our site, but actually they pay on the third party site, After payment, redirect back to our web page to show the result.

  • Editing a web page online

    i know products like cushycms are great for editing web page content from a control panel of sorts - and then having the revised pages uploaded automatically - but is there a way that a page can be edited directly from it's own browser window?
    what i'm trying to accomplish is, i guess, is to emulate an intranet but in a super barebones way. i want to have a list of open projects and have different people go to the list and update the projects status, leave notes, etc.
    any ideas?
    thanks.

    Not sure what you're using this for, but TikiWiki is a popular CMS / on-line Groupware for articles, comments, blogs, meeting calendars, polls, photo or file sharing, FAQs, networking, chats, intranets...
    Features:
    http://doc.tikiwiki.org/tiki-index.php?page=Features
    Skins or Themes:
    http://themes.tikiwiki.org/tiki-index.php
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb

  • Caching the web pages using an application server...Please help

    Hi all.
    I have an application developed using Struts 1.1 which uses JBoss 4.0.2 as an application server.
    In this application user is required to enter a valid url and my application fetches the web page pointed by this url
    and render the same after doing some pre-processing.
    I want to implement caching of pages on server so that if a different user requests with the same url that was earlier issued, that time my application should render the web page that was cached earlier. (so that i can avoid connecting to that url, fetching the page and further pre-processing).
    One of the way i know is to use "application" object, which can be shared among multiple users.
    Are there any other efficient ways ? What about the performance if i use application object ?
    Please help as i am stuck with this.
    Thank you all..
    Prasad

    Using the application scope is one way to do it.
    I would recommend writing a CacheControl bean to handle this for you (or re-using an existing cache object)
    You can put that bean into the application scope. Just to keep things neat and tidy.
    How that bean then caches web pages is up to you
    - Store them in memory (I would recommend a LinkedHashMap in LRU mode)
    - Store them to disk - less memory intensive, a bit slower but can store more
    How are you going to determine if a page is "the same"?
    I think you should also consider the "no-cache" tags that a page may send with itself.
    Caching can drive web application drivers nuts, as the page actually DOES change on every request.
    Cheers,
    evnafets

  • HT4168 Can you do web pages with this application.

    Can you do web pages in the PAGE application?

    Sadie,
    No, Pages doesn't produce web page code.
    Jerry

  • New Oracle ACE web-page an APEX application!

    Hi,
    have you already noticed, the new Oracle ACE web-page where you can search and view the profile of the ACE's is an Oracle APEX application!
    http://www.oracle.com/technology/community/oracle_ace/index.html
    APEX is spreading... :-)
    Patrick
    My APEX Blog: http://inside-apex.blogspot.com
    The ApexLib Framework: http://apexlib.sourceforge.net
    The APEX Builder Plugin: http://sourceforge.net/projects/apexplugin/

    I guess they get a special exemption from the rule against running a production app on apex.oracle.com.
    Nice to see John's book mentioned on the front page.

  • How to edit a web page in Acrobat 9???

    Hello,
    I would like to create a PDF from my website, but do not like the way the web page breaks up when I download it into Acrobat Pro 9. I don't want to change the way the page looks online, just the way it will print out if a client downloads the PDF. Acrobat doesn't seem to allow me to go into the page source to add breaks, or have a command for adding page breaks,  to even out the spacing so that it prints the way I want. Any suggestions?
    Thanks
    Rich

    Sorry but that suggestion doesn't help.I want to add a page break in the web page, in Acrobat,  without having to go in and redesign each page in notepad, rewriting  the html code , so that my scrolling webpage has a page break where I choose as it goes from one page to the next. I don't want it to print a full page of text on the 1st page as that breaks up information I want to keep grouped together. Here;'s the site: http://www.iditarodtours.com/iditarod.htm I want to keep each tour itinerary seperate and together.
    Thanks

Maybe you are looking for

  • [share]Share with you my experience of upgrading PC with zero budgets

    I saw an article on Mobile01 and thought it’s quite interested, so here I translate it. To share with everyone http://www.mobile01.com/topicdetail.php?f=488&t=4250581 Share with you my experience of upgrading PC with zero budgets It is believed that

  • Image reloading Issue - Imagefix

    Hi all, I have requirement like a grid component with images (Thumbnails).I have used the code of from javafx site(Thumnails.fx etc) view style:Microsoft explorer view with thumbnail Problem:Image reloading Issue - Imagefix When i deleting selected i

  • I am getting an error code Os 0000098.

    I recently purchased a Touch smart 23 All in One. I have received an error code 000098. I have tried to reload windows 8 but not successful. I am geteting error messages such as "required partition drive missing". Can anyone help me please.

  • Where to store the servlet class files ?

    If, I store the class files for servlets under WEB-INF/classes folder,           i get file not found exception while using WL 6.1 sp2. But, if i store           the class file under DefaultWebApp folder, it works fine.           Any help about where

  • Changing of Exchange Rate in MIGO via BADI/User Exit

    Hi gurus, I am facing a scenario where I have to amend the exchange rate before posting of GRS. Is there a BADI or User Exit that I could use?