Can't select code text

Hello all,
I'm new to dreamweaver and searched the forum, but couldn't
find an answer. I am helping out a friend who has a HTML website
that was done by someone else. He wants me to simply change the
background image. I open it in dreamweaver and when I move the
mouse of the image I get the "circle with a slash" symbol, i.e. its
not selectable. If I go to the coding area, all of the text is
grayed out and I can't select it.
I know this thing must be "locked" somehow, but have no idea
how to unlock it.
Can someone help out this very green newbie?
Thanks,
Danny

Danny,
Without the code to look at I am guessing. Is the page a
template and are you trying to access a locked uneditable area? Is
the background image applied using css (which I recommend that it
is whatever your answer!)?
Check those points and come back to the forum with your code
if you can't figure it out.
regards
Nick Barling
www.barkingweb.com

Similar Messages

  • Can't select vertical text formatting since Win 7

    Please help.
    Have recently upgraded to win 7 and now I cannot select any text formatting options in the drop down text menus. I can see them, but the drop down menu buttons don't work.
    Has anyone had this happen?
    I have spent so much time on the computer and it's so hard to get any work done.
    Advice would be much appreciated
    I would like to go back to XP but the computer guy says that's not possible.
    Thanks
    ZeeBud

    Thank you so much for responding Peter. I feel one step closer to being able to get my work done.
    Your solution means that I can now use the tools in the tools palette, but no luck with being able to use the text selection drop down menus.
    It's quizzical. I can select the fonts by clicking through file the file path> type> font. Just not through drop downs.
    Any thoughts anyone?
    Zj

  • Can't select code in Dreamweaver cs6

    Hi,
    I can't select html code in Dreamweaver CS6. Instead a line appears with a small square at the top and bottom. What is this, and how do I turn it off?  I've searched in the forums and the only suggestion that I found was to check whether I am using a template, but that isn't the case. This is occuring on existing and newly created files.  I have the view set to Designer with split view.
    Thanks

    Not sure what you mean by a line with a small square at the top and bottom. This is normal when you select anything in code view:
    When you click one of the boxes, it collapses the code like this:
    To expand the code, click the box next to the line number.
    If that's not the problem, please describe what's happening in more detail.

  • Can't select CMYK text colour for text fields in Acrobat Pro forms?

    I have designed a business card template in Indesign, and now want to use Acrobat Pro to add in text fields so that a client can edit the contact details on the cards in future.
    I need to select a specific text colour for the fields, so that it matches the rest of the design. The cards will obviously need to be printed and the document has been set up in CMYK, but when I enter the CMYK colour breakdown in the Properties > Text Colour panel, it won't apply the colour to that field. The text either stays at the default black, or reverts to RGB - which isn't suitable for printing and doesn't match the colour I need.
    Can anybody PLEASE shed some light on this? Other similar posts have either not been answered or people have suggested JavaScript..? I have no idea what I'm supposed to do with a JS code..? Surely there's an easier explanation?
    Thanks in advance.

    This is for a text field that you create in Acrobat, whether the form is used offline or online. The script is a custom Format script, which you can place by bringing up the Properties dialog for the field, select the Format tab, set a format category of Custom, and you should see where you can enter the script. Change the string "Instructional text goes here" to the text you want to display when the field is blank.

  • Can we select Domain text instead of domain value for a field?

    Hi all,
    I have a requirement to display Domain text in the output. when I select a field from table, for example field ZZDIRECT from LFA1 table, it has domain value range as D and I with texts Direct/Indirect. is there any way to get these texts for displaying in the output.

    Hi,
    C the below code, it may guide u...
    DATA: int_domval TYPE dd07v OCCURS 0 WITH HEADER LINE.
    SELECT DOMNAME VALPOS DOMVALUE_L DOMVALUE_H
    into int_domval
    from dd07v
    where domname = Domain Name
    and ddlanguage = sy-langu.
    or use this FM.
    DATA : BEGIN OF int_orient OCCURS 10,
    domvalue_l LIKE dd07v-domvalue_l,
    ddtext LIKE dd07v-ddtext,
    END OF int_orient.
    DATA: ZPETS_PORTORIEN type dd07l-domname,
    int_values_table TYPE dd07v OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'GET_DOMAIN_VALUES'
    EXPORTING
    domname = 'ZPETS_PORTORIEN'
    text = 'X'
    TABLES
    values_tab = int_values_table
    EXCEPTIONS
    no_values_found = 1
    OTHERS = 2.
    LOOP AT int_values_table.
    int_orient-domvalue_l = int_values_table-domvalue_l.
    int_orient-ddtext = int_values_table-ddtext .
    append int_orient.
    ENDLOOP.
    Regards.

  • Running code on iPhone: Can't select Code Signing Provisioning Profile

    I've gone through all the steps to create certificates, app id's, provisions profiles etc.
    But in Xcode, when I want to select the Code Signing Provisioning Profile in Info->Build, the only options available is 'Default Provisioning Profile for Code Signing'.
    The profile has been added to my iPhone with Organizer and on the iPhone itself (under General->Profile), it's also listed correctly.
    I feel like I'm close to the finish, but stuck right in front of it.
    I'm using the latest versions of iTunes, Xcode, iPhone 2.0 etc.
    Any ideas?
    Thanks,
    Tom

    Here are a few things that I did that were suggested in older threads. They may not be necessary, but they don't hurt either:
    * Certificates: you need two them. One is your personal one that you [download]. The other one is the WWDR Intermediate Certificate. When I open 'Keychain Access' and click on 'Certificates', it should show those to. Your personal one should be called 'iPhone Developer: FirstName LastName'. (I assume this is ok for you, but others may find this useful.)
    * App Id: different people have pointed out that you should make your App Id precise, but with not more than 3 levels. The docs suggest using '*' as only path during development, but the docs may be out of date on this one. So in my case, I have ID: ABCFDEF123.com.mycompany.appname. That's it. I've noticed that you'll only be able to have exactly 1 application on your device at the same time with this ID, but that's ok for now.
    * Create your provisioning profile with all this.
    I've then done this:
    - quit Xcode
    - delete all profiles out for ~/Library/MobileDevice/Provisioning Profiles
    - copy the new one in this directory. I didn't do drag and drop because some threads indicated that this doesn't always work.
    - remove previous profile from device (iPhone->Settings->General->Profiles->Delete)
    - start up Xcode
    - Start up Organizer
    The new profile should now be visible in Organizer and be downloaded to your iPhone.
    In the Info.plist, set the Bundle Identifier to com.mycompany.myapp.
    In Build options:
    Code Signing Identity -> 'iPhone Developer: FirstName LastName'
    And now suddenly the new profile did show up.
    After that it just worked.
    Now some have also indicated that even if the profile doesn't show up, you can still get it to work by forcing it in (just double-click on "Code Signing Provisioning Profile" or somewhere in that neighborhood) and fill in the name. I can't confirm if that solves it because when I did so, my certificates were still incorrect...
    Good luck!

  • Can't select text in header

    Man... Just found out after build several web sites that, if you want a browser to show a title other than the explicit name of the page in the left column, you need to edit the text in the header.
    Easy enough. So now, in an existing web site I've built, I turn "show navigation menu" back on so I can see the header text. problem is, I can't select it. All the names up there are the names of my pages. If I click on the box, I can resize it, but I can't select the text at all to change it. If I click on one of the page names, it takes me to that page, so the links are working.
    To calrify... I don't want to show this header nav bar. I just want to be able to control the name that comes up in the browser frame, without actually changing the name of the page.
    Am I missing something? probably.
    Thanks.
    B

    When you first create a page there is a text box at the top just under the navbar with the name of the theme in it. Whatever is in that text box will be the text that shows in the top of the browser's window, i.e. Welcome, About Me, My Photos, etc. (that is if you don't change that text).
    If you don't want to change what you currently have you can use the following code in an HTML snippet to set the title of the page to be displayed by the browser:
    <script type='text/javascript'>
    parent.document.title = "PAGE NAME TO SHOW IN BROWSER TAB/BAR";
    </script>
    OT

  • Can't select text when export in HTML and Images

    I am entirely new to Fireworks and I can't find anyone to teach me Adobe Fireworks. I followed some youtube tutorials but most of them are vague. I am still figuring the way to export from Fireworks to Dreamweaver, without affecting its contents like bitmap images and the text. When I export in HTML and Images format and opened the htm file, I can't select the text I've inserted in Fireworks. Can anyone tell me what I should do?

    I cant scroll below or above viewable section of text in any of my Macbooks, iMac, Mac Mini. Never have been able to, never could, except by pressing the arrow keys whilst selecting, to move up or down.
    Its stupid
    I dont have flash installed (never will do since my first virus of video ad sound running in background from Cnet was downloaded and kept returning until i deinstalled flash).
    I believe that this is a universal issue because none of my Macs can scroll out of screen when selecting text, which as a webmaster and developer, is a pain in the butt
    My issue is not in word documents, its in everything

  • Can't select text or expand text box

    Hi, everyone.
    I have a Page Layout document that exhibiting some odd behavior under Pages 3.0.2.
    Everything is ungrouped and unlocked. "Make master objects selectable" is on, although I don't think I made any of the objects master objects.
    I can't select a text box using the mouse. The only way to get at the text is to perform a find. When the text is selected via the find I then have a cursor and can manipulate the text.
    Also, the plus sign handle isn't responding to the mouse, so I can't expand the box. Very frustrating.
    This seems very much like a bug, yes?
    -André

    Hi, Jerrold.
    I thought of that, too, but choosing Select All selects every object except the one giving me the trouble. Also, there seems to be no evidence of another object over laying.
    Ok, I just tried something slightly different that did the trick.
    When the cursor is on the background, choosing Select All does nothing (yep, nothing, even though I can type). If I purposefully select an object, THEN choose Select All, all the objects get selected, except for the "problem" one.
    But I noticed a menu item called "Make Background Objects Selectable." Choosing that gave the "problem" object handles and I am now able to edit it.
    It seems that Select All wasn't doing what I expected, and that was the broken link in the chain.
    Thank you!!
    (And a public thank you to Dennis, too. Who correctly diagnosed the problem and sent back a working file. Awesome community.)

  • How can I copy the text on a published captivate file?

    I would like my students to use the content on the module by copying the text, how can i achieve it?
    Thank you.
    Weiwei

    My understanding is text in a SWF isn't really text any more, from the standpoint of it being mouse-selectable.
    If it is very limited instances of needing to copy text, you can use a text entry box and enter the text you want them to copy as the 'default text,' but it is far from being an ideal solution.
    There is a Text Area Widget included in Cp5.5 but it seems to be broken.  When I try to type random text in it to test, the text gets garbled with caps/lowers, and some letters don't show up at all when entered.  I typed "The quick brown fox jumped over the lazy dog" and it displayed as:  The uiC bron fox umeD oVer the lazy Dog
    There is a webpage widget that can embed a PDF or html page which you can to select the text, it might work for what you need but may take more back end work:  http://captivatedev.com/2010/11/05/adobe-captivate-5-web-page-widget/
    There maybe other included or availble widgets, I am by far not an expert with them.
    hope that helps.

  • How can I select text in a thtmlb:tableview in a pop-up?

    Hi,
    We have a number of pop-up screens that contain thtmlb:tableview tags.  For some reason, it is not possible to select text (left-mouse click then drag cursor) in these pop-ups.  We are currently having to put any text that the user might want to select in disabled inputfields, but this looks rather ugly. 
    Does anyone have a solution to this problem?  The selection of text within tableviews works fine if the view isn't displayed in a pop-up.
    Many thanks,
    Andrew

    HI Andrew,
    I have a littel problem in understanding the business use case.
    Why should the user want to copy the text from the view.He will either select a row,by using the seletion tabs at the side of the view.
    But why woudl he actually copy the text by left clicking and dragging the mouse over the text.Doesn't look like a valid use case.
    What i have implemened once is where the table in the pop up contains multiple fields,and the user wants the description (ie one field) to be populated automatically into the field after selection of that row in the table view.Thsi can be eaqsily achived by making the table view select option as true and changing the html code also to fetch the selected index.
    After this, the selected entity can be obtained from the collection wrapper,since it becomes the current entity:
    me->typed_context->(context node name)->collection wrapper->get_current()
    Now the desired field from this entity can be copied into the field of your choice in the parent view.Also once the user clicks the selection tab to select the enitty,popup_close method shoudl be called and pop up shoudl be closed immediately.
    All this processing should happen in an even handler eh_onselect().

  • Can't select text on a safari search results page

    Hi, I'm using an Ipad 3 I have safari sset to use the google search in settings
    but when I search for something and it shows the results page I can only select links holding my finger on the text below the link does nothing.
    sometimes the answer i'm looking for is in the text and I can just copy it instead of having to click the link to see it.

    I found out that you gotta do a double tap and hold the only problem is its cumbersome and it only works if safari is set to search google or yahoo if it's set to use bing it does not work at all..
    I've added the code below which will unlock the text select feature when selecting text on a search results page
    I  wrote this java script which allows you to just press and hold on the text to select it.. gets rid of having to double tap and hold and acts like select does on all the other apps. It will also work if your search engine is set to bing.
    to use you will need 2 book marks 1 book mark is for google & yahoo the other is for bing
    add any book mark then go into it and edit it, in the title type "Unlock Text Selection"
    just below the title paste this javascript in
    javascript:void(s = 'hdurj123');  s = '(' + s + ')';  x = new RegExp(s,  'gi');  rn = Math.floor(Math.random() * 100);  rid = 'z' + rn;  b =  document.body.innerHTML;  b = b.replace(x, '<span name=' + rid + ' id=' + rid  + ' style=\'color:#000;background-color:white; font-weight:bold;\'>hdurj123</span>'); void(document.body.innerHTML =  b);
    then save it under the book marks bar
    create a second bookmark and edit it
    in the title type "Unlock Selection Bing" and below that past this java script in
    javascript:void(s = 'results');  s = '(' + s + ')';  x = new RegExp(s, 'gi');  rn = Math.floor(Math.random() * 100);  rid = 'z' + rn; b = document.body.innerHTML;  b = b.replace(x, '<span name=' + rid + ' id=' + rid + ' style=\'background-color:white; font-weight:bold;\'>results</span>'); void(document.body.innerHTML = b);
    if your search engine is set to yahoo or google:
    fire up safari and do a search for something
    when the search results show click on the bookmark "Unlock Text Selection"
    now you will be able to just press and hold on the text to select it and if you move it around you can select individual words.
    if your search engine is set to bing
    fire up safari and do a search for something
    when the search results show, click on the bookmark "Unlock Selection Bing"
    now you will be able to select text with just a press and hold and even individual words
    this only works for search results pages I tried it on a page after I clicked the link and it caused safari to display the page source instead of the page.. I just use it for searches
    here's an example of setting up the bookmark:
    here's what it looks like on a bing search if your search engine is set to bing, in settings:
    you can see that I was able to select the individual words, *** if your in portrait you may have to zoom in a bit *** landscape works without having to zoom at all

  • Can I send a text to a "group" contact without selecting each individual member?

    Can I send a text to a "group" contact without selecting each individual member?  I have a group formed in my contacts, but I still have to select each member in that group to send a text or email from my phone.

    There are apps that allow you to address sms messages to groups (such as Speed Names: https://itunes.apple.com/us/app/speed-names-contacts-groups/id285124918?mt=8), but not iMessages.  Perhaps this will change with a future iOS update.
    The only point of having them at the moment is to allow you to limit the view to only contacts belonging to a group, so that you can more easily add the individual members of the group.  But at the present time, you still have to add them individually.

  • How can I select and enlarge the entire doc,ge on a page, reducing the surrounding boarder.  I can move the difference text boxes about independently of each other but the outer most boarders of the main template block appear to be fixed.

    How can I select adn enlarge the entire document/image on a page, reducing the the surrounding boarder?  I can move the different text and image boxes around independently of each other but the outer most boarders of the main template block appear to be fixed.  I thought I would be able to enlarge or reduce my document from 'page layout' but this does not seem possible.

    Inspector > Document > Document Margins
    The word is border. Boarders are the Harry Potters of this world.
    Peter

  • Design View - Can't Select Text, Only Divs

    This is a page I did not build, and I hope I can describe this properly. Here's the published page -
    www.wheeltime.com
    I'm in CS4 and there are two things going on when trying to edit in design view. The first is I can't select text of content. Clicking to select said content, say a line of text or a word, selects and highlights the entire div container and all the content within in one big chunk. Why is DW not letting me select the actual content? This is the first time I've enver encountered this issue. 
    This is the same for all the div ontainers on the page. But another, perhaps related problem, has to do with this content area. In design view, there's a fixed height, so not only can I not select the content, but I can't see it all. It's OK in the browser, expands as it should. I've looked at all the properties anywhere and don't see any height attribute anywhere, especially those that enclose this area of content.
    One this that has be wondering - this content area is warpped in a "main-content" div, with a class applied. But this div has no corresponding entry or properties in the style sheet. I can see where a div can be used that has no specific properies of it's own, but is it OK to not be mentioned at all in the style sheet? And can this affect what's going on in design view editing?
    So, I guess the question is - what is governing this inability to edit in Design view?  Thank you in advance!!

    Have you tried double clicking the content?
    I'm not sure what causes this exactly, but I downloaded your page and ran it in my DWCS4. It did the same thing until I double clicked the content of the divs. That allowed me to select it without issue from that point on.
    It may have something to do with the content being wrapped in <span> tags within each <div>.
    Onto your other question, your <div id="main-container"class="container"> is being affected by the .container class in your style.css file rather than a #main-container id.
    EDIT: HTML id's like <div id="main-content"> serve to identify elements for many purposes, not just css. There is no problem with giving an element an id simply for organizational purposes, though usually they are used as targets for javascripts, css or php scripting purposes.

Maybe you are looking for

  • Begginer: adding tween motion to a group of layers

    Hi, I'm newbie in flash, currently I'm using flash cs3 at work and flash 8 at home, my problem is this: I'm trying to add a tween motion effect to several layers, each layer has an one single instance of a symbol, this symbol is a movie clip type, th

  • Configurating DSL for Two Computers?

    Just received my WRT54GS. Want to connect it with a new wireless notebook which I'm configuring for networking and internet usage. The OS for the notebook is Windows Vista Home Premium. Currently, the only DSL/Ethernet connection I have is with a des

  • Hard Drive Maximum Size Supported

    Hello, I'm have a MacBook Aluminum (MB466LL/A) and I would like to upgrade my Hard Drive to a 1TB. The question is: This MacBook accepts a hard drive with this size? Anyone here knows the maximum size supported? Regards! Felipe Perez

  • Don't have permissions to open file

    I am trying to open an .NEF raw file. I transfered it from my desktop to my laptop. It is readable on my desktop machine. I can open  other Nikon .NEF raw files. It seems to be a permissions thing

  • New host, same LS and Portal on same DB

    All, We moved the WebServer to a new host, the Portal and Login Server schemas are the same and on the same DB.Do I just run ssodatax ? Thanks Sanjay