Assign ID as NAME in tag editor?

Greetings,
Just curious to know if there's a way to make DW 2004MX
automatically output an id that is the same as the name that I
enter when I use the tag editor to create tags? What I'm after is:
1. Click the tag I want from the toolbar at the top of the
screen.
2. Fill in some details, including a name for the form
element.
3. Automatically have the name I entered output as the ID of
the element as well, rather than having to type it into the tag
editor after I've just typed the name in.

MrBonk wrote:
> Meh....I never use design view. Does DW8 behave the same
way?
I spend about 75% of my time in Design view, but I have
learned the
efficient way of doing things. Tag editor gives fine control
over each
attribute, which is normally what Code view denizens want.
And yes, DW8 is the same. If you don't like it, or have
suggestions
about how it can be improved, use the feature request form:
http://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
Make a good case for it, and it may be changed in the next
version.
David Powers
Adobe Community Expert
Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
http://foundationphp.com/

Similar Messages

  • Assign paragraph-styles to xml-tags correctly. How to?

    Hi,
    I want to assign xml-tags to existing paragraph styles in InDesign CS6 on a Mac 10.6.8. The xml itself is organized like this:
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <katalog>
    <artikel id="32434">
    <img href="/bilder/32434.tiff" />
    <artikeltextgruppe>
    <artikelmarke>DieselGabana</artikelmarke>
    <artikelheadline>Jeans ist super</artikelheadline>
    <artikeltext>Superjeans knallt rein.</artikeltext><artikelnummer>70238</artikelnummer>
    <artikelmaterial>100% Jeans</artikelmaterial>
    <artikelgroesse>Uni</artikelgroesse>
    <artikelfarbe>Uni</artikelfarbe>
    </artikeltextgruppe>
    </artikel>
    </katalog>
    By selecting the option "Assign formats per name to the tags" (translated from German) I wanted to generate the desired look. But if I start this all I get is the whole textblock of <artikeltextgruppe> assigned to 1 formatstyle. And besides that the whole content of <artikeltextgruppe> looks like one single paragraph without any structure (no linebreaks) The content though is correctly structured because I can highlight the value of e.g. <artikelmarke>separately by doubleclicking this tag in the structure-view.
    a) What can I do to assign the formats correctly AND to have correct linebreaks?
    b) If I drag my node <img href="/bilder/32434.tiff" /> iin the layout I get a message displayed to search again for the correct reference location. And that happens independently on using relative or absolute references (Although I need to use relative ones) What can I do here?
    thanks so much

    First, I would probably do a search and replace to remove the group element using a text editor (the <artikeltextgruppe> and </artikeltextgruppe> elements). They really are not needed.
    Second, I usually create my styles with the same names as the elements themselves. Then, after the XML is imported, I use the "map tags to styles" command from the Structure pane.
    I copied and pasted the single artikel element to create 4 records, added a varition of an image to each element record. Once the paragraph styles were mapped, your XML looked like this in a two column format (to get all 4 records on a page)...
    By default, ID will create a single line to a single line in the XML. So if you desire elements to be on their own line, the XML needs to be formatted that way. If you need different styling within a paragraph, you need to create character styles and alter the elements within an XML group and or paragraph and add the code in the XML accordingly or post process once inside of ID.
    I always need to take the XML I am given and reformat, move elements with the tree, change links to images, remove tabs and or spaces where I do not want them, tag for character styles, etc., to get close to how I want the initial format to be.
    Mike

  • "Tag Editor" for M4A and M4V Files?

    I got major corruption in my music files, resulting in either 2 extra letters being inserted in the file names just ahead of the period between the file name and the extension, or the entire filename being replaced by 4 random letters. Found some tag editors that will let me repair MP3 files, by pulling tag data out of the file and using it to fix the file names. Does something like that exist for m4a and m4v files?

    No, I'm not suggesting that at all, I was replying to another poster who said they couldn't add artwork to an mp4 at all.
    Your equipment likely has nothing to do with this, I have a dual 4 core 3 Ghz Xeon CPU and I too have a considerable wait sometimes adding artwork to some files.
    mp4 containers can hold either mpeg4/2 or mpeg4/10, (simple mpeg4 and AVC) and each compression type has a whole array of complexity types associated with it, much the same can be said for audio in the mp4 container.
    What I'm saying is that some mp4's will take time to add artwork, some will do it straight away and there are situations where some mp4's won't take artwork. It isn't your system, your hardware or anything you are doing wrong, it's the way it is.

  • How can I assign image file name from Main() class

    I am trying to create library class which will be accessed and used by different applications (with different image files to be assigned). So, what image file to call should be determined by and in the Main class.
    Here is the Main class
    import org.me.lib.MyJNIWindowClass;
    public class Main {
    public Main() {
    public static void main(String[] args) {
    MyJNIWindowClass mw = new MyJNIWindowClass();
    mw.s = "clock.gif";
    And here is the library class
    package org.me.lib;
    public class MyJNIWindowClass {
    public String s;
    ImageIcon image = new ImageIcon("C:/Documents and Settings/Administrator/Desktop/" + s);
    public MyJNIWindowClass() {
    JLabel jl = new JLabel(image);
    JFrame jf = new JFrame();
    jf.add(jl);
    jf.setVisible(true);
    jf.pack();
    I do understand that when I am making reference from main() method to MyJNIWindowClass() s first initialized to null and that is why clock could not be seen but how can I assign image file name from Main() class for library class without creating reference to Main() from MyJNIWindowClass()? As I said, I want this library class being accessed from different applications (means different Main() classes).
    Thank you.

    Your problem is one of timing. Consider this simple example.
    public class Example {
        public String s;
        private String message = "Hello, " + s;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example();
            ex.s = "world";
            System.out.println(ex.toString());
    }When this code is executed, the following happens in order:
    1. new Example() is executed, causing an object to constructed. In particular:
    2. field s is given value null (since no value is explicitly assigned.
    3. field message is given value "Hello, null"
    4. Back in method main, field s is now given value "world", but that
    doesn't change message.
    5. Finally, "Hello, null" is output.
    The following fixes the above example:
    public class Example {
        private String message;
        public Example(String name) {
            message = "Hello, " + name;
        public String toString() {
            return message;
        public static void main(String[] args) {
            Example ex = new Example("world");
            System.out.println(ex.toString());
    }

  • How to get the name of tag or variable

    Hi everyone,
    I am a newbie, I have problem on getting the name or tag of the variable from OLE for Processing Control(OPC) server, could anyone tell me how I can get the name of tag or variable from writting vb codes or please direct me to any helpful information. Here are
    my codes,
    Dim ItemsDef(NBR_ITEMS) As String
    Dim DeviceAddress As String
    Dim IndItem As Long
    DeviceAddress = "MBT:152.160.178.60"
    'Preparing the Handles for "AddItems"
    For IndItem = 1 To NBR_ITEMS
    ItemsDef(IndItem) = DeviceAddress & "!40000" & Format(IndItem) '40000 is the memory location of variable in the OPC, how can I get the variable name, what is the code or syntax?
    Next
    blah...
    Thank you,
    Calvin

    Hi Calvin,
    If you are looking for general information and examples about OPC, then we have lots of places for you to browse!
    Here is a small list, and you can probably find other links within these documents:
    **If you have Measurement Studio from National Instruments, then you can look at the "Measurement Studio Reference" help file. Search for OPC and in the overview you will find the methods for accessing the items on an OPC server.
    **Elsewhere in the help file, you can find a link to this Application Note on our developer zone
    http://zone.ni.com/devzone/devzoneweb.nsf/opendoc?​openagent&F4921B34CA8F4A9786256874005BE3F7&cat=7CD​A3E51FEFC4AA2862568B80071A1E2
    **One more resource is http://www.ni.com/opc
    **Probably the most useful will be the examples yo
    u can find on our web site. You can go to http://www.ni.com/support and in Option 3 search the Example Code database for "opc".
    In the first example program (Controlling OPC Servers with the OPC Automation API in Visual Basic) that you should get when searching for "opc" in the example programs database, look for the line with this code: "browser.GetItemID(leaf)". There you can see the way the program creates an OPCBrowser from the server instance, and then gets the servers available items for use by the client. This sounds like the specific information you are looking for with the variable name.
    If you aren't able to find out your answer here or in the various help resources, then please feel free to contact us at National Instruments at http://www.ni.com/ask
    Regards,
    John N
    Applications Engineer
    National Instruments

  • Printing my PDF with File name and Tags Stamped on

    To Forum,
    Possibly not a completely Apple related query, but if anyone know it would be great.
    id like to print a PDF on my MBP with the File name and Tags applied to it stamped on the paper copy... or come to think of it, stamped on the PDF copy which i then print out with those stamps on. Either way will do. Any ideas? Its not immediately obvious when i look at the Printing Prefs box.

    This is an option built into various apps - Safari, Firefox, Microsoft Office.
    There are "PDF Utils" that do this on PDFs one at a time. Can't find a specific one for Macs, but found 2 for Windows.

  • For a function module how can I find its assigned data source name?

    Hi BW Gurus,
    If i know the data source name then the  assigned fn. module/Table/Infoset I could find from RSO2. But for function module How do I know its assigned data source name?
    Thanks a lot for the response.
    Regards
    Ven

    Hi Ram,
    In SE16, enter the table name as ROOSOURCE and in contents choose field EXTRACTOR for selection and enter the name of the function module.
    It will return the list of datasources where the function module has been used.
    Best Regards,
    Ankit Agrawal

  • Assigning a host name in the router

    How do you assign a host name to a device that was discovered with a static IP address?
    Router is a mi424wr-gen3i .

    This thread may help you:
    http://forums.verizon.com/t5/FiOS-Internet/Static-IP-Address-for-NAS-Network-Attached-Storage/m-p/57...
    Enjoy!
    If a forum member gives an answer you like, give them the Kudos they deserve. If a member gives you the answer to your question, mark the answer as Accepted Solution so others can see the solution to the problem.

  • FM for assign employee user name to Business partner (employee) in BP t.cod

    Dear alll
    I need fm / bapi for assigning employee (user name) to business partner in identification tcode in BP tcode. Any one help me?

    Hi Saumya Govil
    I have used
    1. BP_BUPA_GET_HROBJECT to get the person number based on PARTNER_GUID.
    2. pass this person number to FM BP_CENTRALPERSON_ASSIGN_USER to assign user ID.
    Instead of the creating new central personal number i have used above BP_BUPA_GET_HROBJECT fm.
    Thanks for your quick reply.

  • Meta Tag Editor

    So I've had my Apple TV now for about 8 months, and I love it. I've been going through my massive collection of DVD's and converting them for ATV. What I was wondering is what Meta Tag editors other people are using or have used? I just don't think iTunes is all that great. What I am looking for specific is:
    1) Can download cover art/poster
    2) Movie Description
    3) Actors/Directors/Etc.
    4) Ability to just edit Meta tags.
    The more it populates the better

    creativet wrote:
    no - we aren't discussing "backing up/converting dvd's" here. It's all about meta tag editors. I'm wondering what people are using, have used or recommend.
    Chenks has offered two good suggestions. Both (I think) can access metadata collated at tagChimp. MetaX for Mac has not been updated for a while, the windows port may offer more if you have access to a Windows machine - not tried it myself.

  • Quick Tag Editor not working on my Mac

    I am on lesson 4 in "Adobe Dreamweaver CC Classroom in a book" and am at a point where I am instructed to insert an Image Placeholder. The instructions has me insert the cursor into text within <p> tags and press the left-arrow key. It states the cursor will then be placed outside the opening <p> tag, which does not work. Then with a key combination the QTE is supposed to open with cursor now inside new brackets. None of the above works. I am in split view. If I can provide anymore info or a screen grab let me know, but I can't even get the QTE to open when I place the cursor in the correct position...
    Thanks...
    **NOTE**If I am inside the <p> tags the Cmd-T command to bring up QTE works. However, when the cursor is placed outside the <p> and inside the <aside> the Cmd-T QTE will not come up as instructed. Obviously I can enter the code in Code edit, but as instructions direct it does not work.

    Preran, Thanks. It works now when I select the <p> selector as mentioned in the video. I assumed the <p> selector mentioned in step 1. below meant the CSS Selectors Window/pane. However when clicking the <p> selector below the split/design window it works. I included the instructions below which seem to be ambiguos at best. Maybe I have simply missed something that was mentioned before.
    Thanks again and we can consider this resolved, unless the book authors wants to make a change to the instructions which seems to be needed.
    Thanks,
    David In Texas....
    1. Insert the cursor into the text directly below the vertical menu. Click the < p > tag selector. The placeholder image should not be inserted within the < p > element. If it were, it would inherit any margins, padding, and other formatting applied to the paragraph, which could cause it to disrupt the layout.
    Tip Use Split view whenever you’re unsure where the cursor is inserted.
    2. Press the Left Arrow key. As you have seen in earlier exercises, the cursor moves to the left of the opening < p > tag in the code but stays within the < aside > element. 3. Press Ctrl-T/ Cmd-T to open the Quick Tag Editor.
    Adobe Creative Team (2013-07-08). Adobe Dreamweaver CC Classroom in a Book (Kindle Locations 2609-2620). Pearson Education. Kindle Edition.

  • Any good Free mp3 tag editor programs (vista compat)

    Are there any 3rd party mp3 tag editors around. Prefer one that does mass processing where it knows the file format "artist - trackname" and adds tags?

    Beano wrote:
    MP3 Library doesn't fall in?the "good" category IMO :|
    Any other app which I should try ?
    Tag editors are very much a personal choice. MP3 Library isn't flashy, but it's **bleep** powerful.
    Others are listed here in the Zen FAQ at Nomadness.net.

  • Aperture 3 FACES - two people assigned to one name (reassign? split?)

    In Aperture 3's faces, I have two people, both named Lindsey, who have been assigned to one name. I have looked and looked for a way to split them, reassign them to two separate names and I cannot find a way to do that.

    You are going to have to go into the faces interface for lindsey - double click - make sure you are looking at all of the photos. Hit the confirm button and then use option-click or option-drag to remove one of the people from that "Lindsey" - now that that person is un-named name her something else and use the confirm faces to put the rest of her photos within that name.
    RB

  • Quick Tag Editor Dropdown  Application Error

    I just installed Adobe Dreamweaver CS 5 and this thing has been crashing like crazy with error "Quick Tag Editor Dropdown - Application error." What is this Quick Tag Editor Dropdown and how do I get rid of this error? Any one experiencing same?
    Do I need to go back to cfeclipse?

    I can't really imagine many people on here use DreamWeaver to be honest, personally I'd take Eclipse any day. As it's a non-CF-specific question, I suspect you'd have more luck on the DreamWeaver forums.

  • Mp3 id tag editor for symbian^3?

    hi,
    i've been searching for a good mp3 tag editor for like forever. .all i found were s60 3rd (not compatible with my phone) and java apps (not good enough). So, does anyone know any good mp3 tag editor apps for symbian^3 or at least for s60v5 that wil work on S^3. I use nokia C6-01 Symbian Belle Refresh

    Hi cyanezong,
    Please see this thread for a possible solution to the issue, the application is included in the first post. Alternatively you can edit your tags using Zune or any other MP3 player on your computer. 
    Hope this helps!
    Puigchild
    If you find this post helpful, a click upon the white star at bottom would always be appreciated.
    If it also solves your problem, clicking ACCEPT AS SOLUTION below it will benefit other users!

Maybe you are looking for