A very basic editor related question

Dreamweaver is considered a versatile & matured HTML editing tool, but (surprisingly) I could not find a very basic HTML editing facility in Dreamweaver (which is found in some free tools like Aptana Studio).
In the code editor, if I click on a HTML (starting) tag, the editor should highlight the end tag, but the Dreamweaver editor does not do that? Am I missing anything?
(I am using Dreamweaver CS3)

In Code View you have some icons on the left side of your screen.  These can be used to expand and collapse sections of code for easier viewing.
< > Select Parent Tag.  See screenshot.
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists
http://alt-web.com/
http://twitter.com/altweb
http://alt-web.blogspot.com

Similar Messages

  • Very basic initial configuration question.

    Hi.
    I replaced a Catalyst 2960G for a C2960X-24-L in a network where there are already five switches.
    I have no idea how to assign it an ip : is there anyone here willing to explain that in  very simple way ?
    I tried plug it in the existing network, but didn't work.
    I'm not the one whom installed the network, and I'm doing that to help.
    Thank you.
    Pierre

    Also if you are adding a new sw to the network i recommend you to reset the vtp in that sw (if your network has it.) if you are not sure just do "vtp mode transparent" "vtp mode client" assuming that you are replacing a client sw.
    Then you should verify before connecting to the network:
    - type of stp that your network is running
    - if you have vtp check the config and use the same domain, version, password so the sw gets the vlans from the 
    - when you have all the vlans set in the sw then add the interfaces to the vlans
    - be sure that you are not replacing the root sw.
    Maybe there are others things to check but thats what comes to my mind now
    Regards

  • Very Basic ISA 2006 Question

    I am the first to admit that I don't really know anything about ISA....so please forgive me if this question is too stupid for words.....(and if a particular MVP with the initials 'AF' is reading this, then yes, I know I am incredibly stupid and shouldn't have
    anything to do with networks, and me posting to these forums is an offence to your sensibilities etc etc, so spare me the rant this time...)
    Anyway, I was under the impression that with ISA server you could have a number of web sites all running off the same IP address. For example, we have 2 websites (site1.company.com and site2.company.com) and 1 external IP address. We have DNS records set up
    for each of these sites, and they both point to our external IP address. What I thought happened (in my incredibly uneducated mind) was this
    1. User types www.site1.company.com into their browser, which resolves to our external IP address on our firewall. Our firewall forwards this request to our ISA s2006 server. The ISA server reads the 'site1.company.com'
    in the request and forwards the traffic to webserver1.
    2. User types www.site2.company.com into their browser, which resolves to our external IP address on our firewall. Our firewall forwards this request to our ISA s2006 server. The ISA server reads the 'site2.company.com'
    in the request and forwards the traffic to webserver2.
    Are my assumptions correct, or do we need a public IP address for every site we wish to publish?

    Hi,
    you are correct. It is possible to publish multiple websites with one public IP address:
    http://support.microsoft.com/kb/838252/en-us
    http://blogs.technet.com/b/isablog/archive/2008/06/19/another-look-at-web-publishing-part-ii-host-headers-with-ssl-and-certificates.aspx
    regards Marc Grote aka Jens Baier - www.it-training-grote.de - www.forefront-tmg.de - www.galileocomputing.de/3570

  • Very basic user, simple question (i think)

    Hi there,
    Very new to dreamweaver, im making a website at the moment, what i dont understand is i have a set template, which i have used for about 6 pages within the website.  On all the pages it is very zoomed in when i preview it in chrome, apart from one page, this page looks perfect, its in perspective and everything isnt too large like on the others.  Is there a way i can make them all follow this one?
    Nevermind that, sorted that
    How do i set the zoom of the page, so when anyone goes onto the page it appears in the correct zoom, rather than far too zoomed in like it does now

    Newtimething wrote:
    Nevermind that, sorted that
    How do i set the zoom of the page, so when anyone goes onto the page it appears in the correct zoom, rather than far too zoomed in like it does now
    Not a clue what your'e talking about. Is the browser set to zoomed by default? Sometimes it can be set in the last position you use it at so you need to re-set it, that' a possibility

  • Very basic SQL/XML question

    I'm using the following environment:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product
    PL/SQL Release 10.2.0.1.0 - Production
    CORE 10.2.0.1.0 Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    However, I don't think my environment is the issue.
    I'm trying to get output which looks like this from a simple table:
    <MAXDOMAIN action="S">
         <DOMAINID key="true">domainid_data</DOMAINID>
         <SYNONYMDOMAIN type="relationship" action="AU" >
              <VALUE key="true">value_data</VALUE>
              <MAXVALUE>maxvalue_data</MAXVALUE>
              <DESCRIPTION>description_data</DESCRIPTION>
              <DEFAULTS>defaults_data</DEFAULTS>
         </SYNONYMDOMAIN>
    </MAXDOMAIN>The table looks like this
    Name                           Null     Type          
    DOMAINID                       NOT NULL VARCHAR2(30)   
    DESCRIPTION                             VARCHAR2(50)   
    DOMAINTYPE                              VARCHAR2(5)    
    MAXTYPE                                 VARCHAR2(5)    
    LENGTH                                  VARCHAR2(5) The real question is how do I get an element with attributes to also have content.
    <DOMAINID key="true">domainid_data</DOMAINID>and
    <VALUE key="true">value_data</VALUE>I'm not sure if I'm syntactically challenged or just not using the correct tags.
    If I try to just generate the first two tags, forgetting the following nesting, I'm OK, as long as I don't try to assign attributes to the DOMAINID tag:
    SELECT  XMLELEMENT
    ("MAXDOMAIN",XMLATTRIBUTES('S' AS "action"),XMLELEMENT(NAME DOMAINID, "DOMAINID")
    AS "RESULT"
    FROM FAC_MAXDOMAIN;This works and is pretty trivial.
    <MAXDOMAIN action="S"><DOMAINID>AIRFLOWTYPE</DOMAINID></MAXDOMAIN>
    etc, etc...However, this:
    SELECT  XMLELEMENT
    ("MAXDOMAIN",XMLATTRIBUTES('S' AS "action"),XMLELEMENT(NAME DOMAINID, "DOMAINID",XMLATTRIBUTES('true' AS "key"))
    AS "RESULT"
    FROM FAC_MAXDOMAIN;Yields an ORA-00907: missing right parenthesis error.
    Any ideas? maybe a good primer on SQL/XML might be the best solution...
    TIA,
    Paolo

    Very nice for a first post in terms of data included and formatting.
    It took me a few minutes to see it, but the simple answer is you are putting the XMLAttributes in the wrong location. See the XMLElement spec at http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/functions220.htm#SQLRF06168 that shows XMLAttributes comes between the identifier and value. So that means you should have written it as
    Connected to Oracle Database 11g Enterprise Edition Release 11.1.0.6.0
    SQL> WITH FAC_MAXDOMAIN AS
      2  (SELECT 'domainid_data' domainid, 'dscr' description,
      3          'type' domaintype, '10' maxtype, '5' length
      4     FROM dual)
      5  -- Using WITH so didn't have to create your table locally
      6  SELECT  XMLELEMENT("MAXDOMAIN",
      7            XMLATTRIBUTES('S' AS "action"),
      8            XMLELEMENT(NAME DOMAINID, XMLATTRIBUTES('true' AS "key"), "DOMAINID")
      9          )
    10  AS "RESULT"
    11  FROM FAC_MAXDOMAIN;
    RESULT
    <MAXDOMAIN action="S"><DOMAINID key="true">domainid_data</DOMAINID></MAXDOMAIN>

  • Very basic Objective-C Question

    Okay, I am completely new to Objective-C so forgive me.
    I am trying to run a command when the MainView is initially loaded, so I figured I would need to override the constructor. I tried overriding init and initWithFrame, but it didn't work.
    How can I get a command to run (sendDate = [NSDate date];) when the UIView is initially loaded?
    Thanks a bunch.

    Let's take a step back for a second. Are you using Interface Builder (IB) with XViewController?
    Usually with a UIViewController there is no separate UIView class. At least not with the code I've written. A view controller creates its own view. If using IB then the view is created from the XIB file. There is no actual UIView class on the file system or in your project.
    So what ends up happening is the UIViewController loads the view and the view controller's 'viewDidLoad' method gets called. It is usually here that you finish off setting up the view. You access the view using 'self.view' inside the view controller code.
    But you seem to have an actual class named MainView that is a UIView. And it appears that class has an instance variable of 'sendDate'. Did you create this class by hand? If so then you must have explicit code for creating it. Where is this code?
    This is one of those details that I could explain is 5 seconds in person after seeing what you were doing. But online I can't, of course, see what you are really doing.

  • A very basic sql xml question..

    I want to print only two rows group by grup number so there are only two group numbers
    0 and 1...
    so 0 group should have two items...
    Elapsed: 00:00:00.01
    15:15:55 SQL>
    15:15:56 SQL> l
      1  with data as
      2    (select 0 as grp,'A' item_name , 'XX' Item_desc from dual
      3     union
      4      select 0 ,'B'  , 'XY'  from dual
      5      union
      6      select 1 ,'B'  , 'Y'  from dual
      7       )
      8  select xmlelement(name "grp",
      9            xmlforest(grp  "item_name",item_name)
    10            )
    11*  from data
    15:15:57 SQL> /
    XMLELEMENT(NAME"GRP",XMLFOREST(GRP"ITEM_NAME",ITEM_NAME))
    <grp><item_name>0</item_name><ITEM_NAME>A</ITEM_NAME></grp>
    <grp><item_name>0</item_name><ITEM_NAME>B</ITEM_NAME></grp>
    <grp><item_name>1</item_name><ITEM_NAME>B</ITEM_NAME></grp>
    Elapsed: 00:00:00.01

    Hi,
    You should use XMLAGG, to get everything into a single XML element. And DON'T use extract()!!
    Something like:
    SQL> declare
       xml   xmltype;
    begin
      with data as
        (select 0 grp, 'g1' grp_name, 'A' item_name, 'XX' item_desc from dual union all
         select 0    ,  'g1' grp_name,'B'          , 'XY'           from dual union all
         select 0    ,  'g2' grp_name,'B'          , 'XY'           from dual union all
         select 0    ,  'g3' grp_name,'B'          , 'XY'           from dual union all
         select 1    ,  'g1' grp_name,'B'          , 'Y'            from dual)
    -- end of test data    
         select xmlagg(xmlelement("GRP"
                                 ,xmlagg(xmlelement("ITEM_NAME", item_name))
                                 ,xmlagg(xmlelement("item_desc", item_desc))))
           into xml
           from data
       group by grp, grp_name, item_name;
       dbms_output.put_line(dbms_lob.getlength(xml.getclobval()));
    end;
    299
    PL/SQL procedure successfully completed.Regards
    Peter

  • Scripting Question - Very Basic

    Hello, I'm using the trial version of InDesign and am wondering if because it's the trial version that I can't load custom scripts from Adobe?  I've downloaded and installed a Custom Calendar script [I can see the extracted files in/on my PC] but the app apparently doesn't see it.  Any help you can offer is greatly appreciated.  Thanks, 

    Thank you so much, you were spot on. 
    From: Peter Spier <[email protected]>
    To: Friar5 <[email protected]>
    Sent: Monday, December 12, 2011 3:18 PM
    Subject: Scripting Question - Very Basic
    Re: Scripting Question - Very Basic created by Peter Spier in InDesign - View the full discussion
    Have you put thew script in a location that InDesign uses for scripts? See How to install scripts in InDesign | InDesignSecrets
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4079869#4079869
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4079869#4079869. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in InDesign by email or at Adobe Forums
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Basic Hyperion Workspace question

    Is there any way to Drill-Down to data by double-clicking on the chart item in Hyperion Workspace? I can do this in Hyperion Reporting Studio.

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic recording/feedback question

    I'm recording basic vocals against accompaniment tracks using an APOGEE ONE and Audio-Technica 40 series AT8449 condenser mic. I use only headphones, no external speakers.
    If I record with "monitoring" on I constantly battle feedback/distortion, especially on songs with a wide dynamic range. When the feedback protection kicks in the message indicates that I'm getting feedback through my external speakers (which I don't have), I can minimize the problem by turning "monitoring" off but I lose the reference vocal. I know I must be overlooking something very simple. Any help is appreciated.

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic PDF/SSL Question

    Okay, I know this is a basic question, and I'm not sure if this is really where I should be posting it, but maybe someone out there has experience with this.
    I have a PDF form sitting on a secure server.  I have it set up to email the completed PDF back to our company when the user clicks the SUBMIT buttton.  Whether or not the PDF is secure coming back to us would be dependent on the email server the user uses - not that the form sits in a secure area on our server or that the PDF is security settings are set, correct?
    Any input appreciated.
    Thanks
    Q

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic Clone database question

    hi all,
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.
    Hope u understand
    Thanks,
    Neerav

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Matte/mask question - very basic

    Really dumb question- I have never fully understood the terminology, though I know conceptually what I want to do. I want to create an image matte I believe. An example would be - I have a photograph of a television set. I have made the entire screen (slightly oval) all pure black. I wish to have a layer (video) underneath it snow up, but only through this layer of black, so the image is cropped around the edge of the round-ish screen (it's an old TV). How do I do this? I'm always confused at all the composite modes - matte, mask, add, yada yada.
    I know this is very basic, so I'm looking for some guidance on how to accomplish this so I know the terminology and the basics.
    Thanks

    qft.
    Nothing wrong with that either !
    In the interests of science and bad family entainment (which I know Mike likes to inflict on relatives. Sorry Mike, had to throw that in, still get a laugh when I think about that post) ... there is more than one way to skin the cat
    Mike - if you wanted to use a matte and not a mask then you'll want to composite the image you want to use in the screen part of the tv using that part of the tv.
    You'll want the "black" portion of your screen to be white. Then you'd use on another layer above that white "matte" the image or layer of video you want to appear.
    So you'd have your tv box on one layer- then your white screen on anther layer - then an image/video above using Travel Matte Luma from the composite mode.
    It's quick - but offers less cntrol, imo.
    I like masks - personal preference only, tho'

  • If I upgrade to Mountain Lion on the computer that will install it, will my WIFI still work on the computer that cannot be upgraded? I know this is a very basic question

    If I upgrade to Mountain Lion on the computer that will install it, will my WIFI still work on the computer that cannot be upgraded? I know this is a very basic question. Trying to hold out as long as I can, but purchasing an iPhone for Christmas and new iMac next year when warrently expires.

    Thank U very much for the quick reply, I wanted to upgrade this weekend, but still on the fence. I can live with the software that is not compatible, they are on another compuetr, just didn't want the obvious stuff to stop working.

  • Possibly a very basic question but I have set up a spread sheet in Numbers and have viewed help videos but I can't get it to give me sums for the columns I highlight.  Keeps coming up with the figure zero.  I have version 09 2.3(554). Can anyone help

    Possibly a very basic question but I am going nowhere without a solution.  I have set up a spreadsheet in Numbers but it won't give me sums for chosen columns. I  have viewed the run through videos and used the formula but nothing happens apart from giving a figure of zero or a red arrow.  The sum icon in the bottom left hand section of the window does not highlight or show any total as I understand from the video that you can drag whatever total is here onto the relevent position on your spreadsheet.  I have Numbers 09 version 2.3 (554). Can anyone advise. Thanks.

    Hi Sohojools,
    To sum a column, use a formula such as this one in Cell A6
    Type this in a cell below your data:
    =SUM(A2:A4) or whatever range of cells you want to sum. The easy way is to type:
    =SUM(
    and then drag or shift-click to select the range of cells. Close the formula with a final bracket ")".
    The sum icon in the bottom left hand section of the window does not highlight or show any total
    To see the sum (and other simple statistics) in the bottom left, select a range of cells. That tells Numbers which cells you are refering to.
    The videos are good, but the Numbers'09 User guide, and the Formulas and Functions User Guide are better. Download them from the Help Menu in Numbers.
    Regards,
    Ian.

Maybe you are looking for

  • Formatting and alignment issues in Crystal Reports when exported to PDF

    Hi Experts, When we export the crystal reports 2013 reports to PDF we are facing issues with formatting and alignment. The columns are overlapping and also for some column's data, we are able to see only some parts of text when exported to PDF. Data

  • Failing mid-2010 mini server drive - warranty?

    I have a mid-2010 mini server - you know, the one with "server" class hard drives - and it started exhibiting dying behavior - it would freeze, or nearly so, and the logs reported all sorts of I/O errors. I scanned for bad blocks and out of the 500GB

  • Authorisation variable using customer exit

    Hi, how to populate a authorisation object at runtime? is it possible to have a variable etc that can be populated a runtime? I have a object zsales_off which has different values for different users. i need to create separate roles just to have diff

  • Merge the Query

    SELECT MAX(fndattdoc.LAST_UPDATE_DATE ) as LAST_UPDATE_DATE, MAX(DECODE(fndcatusg.format,'H', st.short_text,NULL,st.short_text, NULL)) as COMMENTS, MAX(fnddoc.description) as REASON FROM fnd_attachment_functions fndattfn, fnd_doc_category_usages fndc

  • Search google keyboard shortcut conflicts with pages

    The apple system preference, keyboard, indicates that shift-command-L will search google is safari. However, in pages, that command displays layout. Search in google does work using the services menu option in pages. Is there a way to change or resol