Visio - Remove/Delete Realization Link

Hi,
I am using Visio 2010.
I created a class and an interface in a Class Diagram.  I put a realization link from the class to the interface and I want to delete it.  However, Visio does not let you delete it due to Shape protection.
Is it actually possible to remove it? 
I can move the realization link away from the interface so it points to no object - but I still have a line I cannot get rid of.  I can hide the realization link from the Shape Display Options, but when I show it again it reappears.  I just want
to move the stupid link.  See below:
This is frustrating.
Can it be done?
And on another note, I cannot seem to add more than 3 realizations on a single class.
Thanks,
Andez
Andez (Please mark as answer if it helps)

The only way I found to remove "rogue" realization link(s) was to drag the class from the model pane to the diagram to duplicate the shape, delete the original shape, and rearrange the new shape to reflect the old one.
As far as the maximum of 3 realizations per class, I had the same problem and didn't find a solution.

Similar Messages

  • How do I remove "web clips" links to web pages from my Home screen? Holding until jiggle does not produce "X" for deletion contrary to the ipod touch manual

    How do I remove "web clips" links to web pages from my Home screen? Holding until jiggle does not produce "X" for deletion contrary to the ipod touch manual

    Figured oout that I had restricted deletions of programs.
    Settings->General->Restrictions-> (enter your passcode), Turn Deleting Apps ON
    Afterward holding an icon until it jiggles will produce the X delete button.
    You might want to turn Delete apps OFF after cleaning up.

  • How to delete public link to CC folder?

    how to delete public link to CC folder?

    Choose the Send Link option again for that folder. When the Send Link dialog opens click the Remove Public Link button.

  • Remove hyperlinks from links inside email

    I was wondering if you could create an exchange transport rule that would check all incoming email for hyperlinks, if it seen one, it would remove the hyperlink and change it just into text.

    Hello,
    Please try to build a transport agent to remove all HTML links from an incoming SMTP messages. And you need to use Visual Studio to realize it.
    You can refer to the "Setting up the Environment" section in the following blog:
    http://blogs.technet.com/b/exchange/archive/2013/01/21/how-to-write-an-exchange-2013-transport-agent.aspx
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • Remove/Delete old preset

    How do I remove/delete an old preset. I have too many and need to clean up. I have LR 5 version 5.6.

    electropop wrote:
    how can i remove or delete old songs from GB files??
    http://www.bulletsandbones.com/GB/GBFAQ.html#deletegbprojects
    (Let the page FULLY load. The link to your answer is at the top of your screen)

  • How do I remove the web link from text

    I have a text string on a sticky note that is formatted as a web link.
    How can I remove the web link so the string becomes ordinary text?
    Thanks,
    -Joe

    In Stickies, ⌃click (or right-click) the link. From the contextual menu, choose Remove Link. Alternatively, choose Edit Link…, then click the Remove Link button, or delete the URL.

  • How can I delete the link to part of this script?

    Hi there,
    Can anyone tell me how to delete the 'link to' part of this
    JavaScript as I am using this slideshow from Dynamic Drive however
    I don't want to be able to click on the pictures and be taken to
    another website. I'm not familiar with JavaScript so any help would
    be much appreciated.
    Thanks!
    <script src="SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    * Ultimate Fade-In Slideshow (v1.51): © Dynamic Drive (
    http://www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit
    http://www.dynamicdrive.com/
    for this script and 100s more.
    var fadeimages=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages[0]=["restaurantexterior1.jpg"]
    fadeimages[1]=["restaurantinterior2.jpg"]
    fadeimages[2]=["restaurantinteriorwall.jpg"]
    var fadebgcolor="white"
    var fadeimages2=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages2[0]=["restaurantinteriorframed.jpg"]
    fadeimages2[1]=["restaurantsign.jpg"]
    fadeimages2[2]=["tablefortwo.jpg"]
    var fadebgcolor="white"
    ////NO need to edit beyond here/////////////
    var fadearray=new Array() //array to cache fadeshow instances
    var fadeclear=new Array() //array to cache corresponding
    clearinterval pointers
    var dom=(document.getElementById) //modern dom browsers
    var iebrowser=document.all
    function fadeshow(theimages, fadewidth, fadeheight,
    borderwidth, delay, pause, displayorder){
    this.pausecheck=pause
    this.mouseovercheck=0
    this.delay=delay
    this.degree=10 //initial opacity degree (10%)
    this.curimageindex=0
    this.nextimageindex=1
    fadearray[fadearray.length]=this
    this.slideshowid=fadearray.length-1
    this.canvasbase="canvas"+this.slideshowid
    this.curcanvas=this.canvasbase+"_0"
    if (typeof displayorder!="undefined")
    theimages.sort(function() {return 0.5 - Math.random();})
    //thanks to Mike (aka Mwinter) :)
    this.theimages=theimages
    this.imageborder=parseInt(borderwidth)
    this.postimages=new Array() //preload images
    for (p=0;p<theimages.length;p++){
    this.postimages[p]=new Image()
    this.postimages[p].src=theimages[p][0]
    var fadewidth=fadewidth+this.imageborder*2
    var fadeheight=fadeheight+this.imageborder*2
    if (iebrowser&&dom||dom) //if IE5+ or modern browsers
    (ie: Firefox)
    document.write('<div id="master'+this.slideshowid+'"
    style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"> <div
    id="'+this.canvasbase+'_0"
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div><div
    id="'+this.canvasbase+'_1"
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filte r:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml- opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
    else
    document.write('<div><img
    name="defaultslide'+this.slideshowid+'"
    src="'+this.postimages[0].src+'"></div>')
    if (iebrowser&&dom||dom) //if IE5+ or modern browsers
    such as Firefox
    this.startit()
    else{
    this.curimageindex++
    setInterval("fadearray["+this.slideshowid+"].rotateimage()",
    this.delay)
    function fadepic(obj){
    if (obj.degree<100){
    obj.degree+=10
    if (obj.tempobj.filters&&obj.tempobj.filters[0]){
    if (typeof obj.tempobj.filters[0].opacity=="number") //if
    IE6+
    obj.tempobj.filters[0].opacity=obj.degree
    else //else if IE5.5-
    obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
    else if (obj.tempobj.style.MozOpacity)
    obj.tempobj.style.MozOpacity=obj.degree/101
    else if (obj.tempobj.style.KhtmlOpacity)
    obj.tempobj.style.KhtmlOpacity=obj.degree/100
    else if
    (obj.tempobj.style.opacity&&!obj.tempobj.filters)
    obj.tempobj.style.opacity=obj.degree/101
    else{
    clearInterval(fadeclear[obj.slideshowid])
    obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")?
    obj.canvasbase+"_0" : obj.canvasbase+"_1"
    obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] :
    document.getElementById(obj.nextcanvas)
    obj.populateslide(obj.tempobj, obj.nextimageindex)
    obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)?
    obj.nextimageindex+1 : 0
    setTimeout("fadearray["+obj.slideshowid+"].rotateimage()",
    obj.delay)
    fadeshow.prototype.rotateimage=function(){
    if (this.pausecheck==1) //if pause onMouseover enabled, cache
    object
    var cacheobj=this
    if (this.mouseovercheck==1)
    setTimeout(function(){cacheobj.rotateimage()}, 100)
    else if (iebrowser&&dom||dom){
    this.resetit()
    var crossobj=this.tempobj=iebrowser?
    iebrowser[this.curcanvas] : document.getElementById(this.curcanvas)
    crossobj.style.zIndex++
    fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50)
    this.curcanvas=(this.curcanvas==this.canvasbase+"_0")?
    this.canvasbase+"_1" : this.canvasbase+"_0"
    else{
    var
    ns4imgobj=document.images['defaultslide'+this.slideshowid]
    ns4imgobj.src=this.postimages[this.curimageindex].src
    this.curimageindex=(this.curimageindex<this.postimages.length-1)?
    this.curimageindex+1 : 0
    fadeshow.prototype.resetit=function(){
    this.degree=10
    var crossobj=iebrowser? iebrowser[this.curcanvas] :
    document.getElementById(this.curcanvas)
    if (crossobj.filters&&crossobj.filters[0]){
    if (typeof crossobj.filters[0].opacity=="number") //if IE6+
    crossobj.filters(0).opacity=this.degree
    else //else if IE5.5-
    crossobj.style.filter="alpha(opacity="+this.degree+")"
    else if (crossobj.style.MozOpacity)
    crossobj.style.MozOpacity=this.degree/101
    else if (crossobj.style.KhtmlOpacity)
    crossobj.style.KhtmlOpacity=this.degree/100
    else if (crossobj.style.opacity&&!crossobj.filters)
    crossobj.style.opacity=this.degree/101
    fadeshow.prototype.startit=function(){
    var crossobj=iebrowser? iebrowser[this.curcanvas] :
    document.getElementById(this.curcanvas)
    this.populateslide(crossobj, this.curimageindex)
    if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE
    ONMOUSEOVER
    var cacheobj=this
    var crossobjcontainer=iebrowser?
    iebrowser["master"+this.slideshowid] :
    document.getElementById("master"+this.slideshowid)
    crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
    crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
    this.rotateimage()
    </script>

    Hello,
    It looks like you already removed some code from the
    fadeimages Array.
    In the fadeimages Array, the script is looking for three
    things: the image
    path, the link and the target.
    Since you don't want a link and don't need a target, just
    insert an "empty
    value" for each of these.
    You only have the image path in the code, so the script fails
    "when it
    doesn't find the other two things it's looking for"..
    Change this:
    fadeimages[0]=["restaurantexterior1.jpg"]
    fadeimages[1]=["restaurantinterior2.jpg"]
    fadeimages[2]=["restaurantinteriorwall.jpg"]
    To this:
    fadeimages[0]=["restaurantexterior1.jpg", "", ""]
    fadeimages[1]=["restaurantinterior2.jpg", "", ""]
    fadeimages[2]=["restaurantinteriorwall.jpg", "", ""]
    "" means no value, so now the script finds the image path,
    then finds the
    link which is empty and lastly, finds the target which is
    empty.
    Since it finds the three things it's looking for, it
    processes.
    Take care,
    Tim
    "Bashful Girlie" <[email protected]> wrote
    in message
    news:[email protected]...
    > Hi there,
    >
    > Can anyone tell me how to delete the 'link to' part of
    this JavaScript as
    > I am
    > using this slideshow from Dynamic Drive however I don't
    want to be able to
    > click on the pictures and be taken to another website.
    I'm not familiar
    > with
    > JavaScript so any help would be much appreciated.
    >
    > Thanks!
    >
    > <script src="SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    > <script type="text/javascript">
    >
    > /***********************************************
    > * Ultimate Fade-In Slideshow (v1.51): © Dynamic
    Drive
    > (
    http://www.dynamicdrive.com)
    > * This notice MUST stay intact for legal use
    > * Visit
    http://www.dynamicdrive.com/
    for this script and 100s more.
    > ***********************************************/
    >
    > var fadeimages=new Array()
    > //SET IMAGE PATHS. Extend or contract array as needed
    > fadeimages[0]=["restaurantexterior1.jpg"]
    > fadeimages[1]=["restaurantinterior2.jpg"]
    > fadeimages[2]=["restaurantinteriorwall.jpg"]
    >
    > var fadebgcolor="white"
    >
    > var fadeimages2=new Array()
    > //SET IMAGE PATHS. Extend or contract array as needed
    > fadeimages2[0]=["restaurantinteriorframed.jpg"]
    > fadeimages2[1]=["restaurantsign.jpg"]
    > fadeimages2[2]=["tablefortwo.jpg"]
    >
    > var fadebgcolor="white"
    >
    > ////NO need to edit beyond here/////////////
    >
    > var fadearray=new Array() //array to cache fadeshow
    instances
    > var fadeclear=new Array() //array to cache corresponding
    clearinterval
    > pointers
    >
    > var dom=(document.getElementById) //modern dom browsers
    > var iebrowser=document.all
    >
    > function fadeshow(theimages, fadewidth, fadeheight,
    borderwidth, delay,
    > pause,
    > displayorder){
    > this.pausecheck=pause
    > this.mouseovercheck=0
    > this.delay=delay
    > this.degree=10 //initial opacity degree (10%)
    > this.curimageindex=0
    > this.nextimageindex=1
    > fadearray[fadearray.length]=this
    > this.slideshowid=fadearray.length-1
    > this.canvasbase="canvas"+this.slideshowid
    > this.curcanvas=this.canvasbase+"_0"
    > if (typeof displayorder!="undefined")
    > theimages.sort(function() {return 0.5 - Math.random();})
    //thanks to Mike
    > (aka
    > Mwinter) :)
    > this.theimages=theimages
    > this.imageborder=parseInt(borderwidth)
    > this.postimages=new Array() //preload images
    > for (p=0;p<theimages.length;p++){
    > this.postimages[p]=new Image()
    > this.postimages[p].src=theimages[p][0]
    > }
    >
    > var fadewidth=fadewidth+this.imageborder*2
    > var fadeheight=fadeheight+this.imageborder*2
    >
    > if (iebrowser&&dom||dom) //if IE5+ or modern
    browsers (ie: Firefox)
    > document.write('<div id="master'+this.slideshowid+'"
    >
    style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:
    > hidden;"><div id="'+this.canvasbase+'_0"
    >
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;lef
    >
    t:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-
    >
    opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div
    > id="'+this.canvasbase+'_1"
    >
    style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;lef
    >
    t:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-
    >
    opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>')
    > else
    > document.write('<div><img
    name="defaultslide'+this.slideshowid+'"
    > src="'+this.postimages[0].src+'"></div>')
    >
    > if (iebrowser&&dom||dom) //if IE5+ or modern
    browsers such as Firefox
    > this.startit()
    > else{
    > this.curimageindex++
    >
    setInterval("fadearray["+this.slideshowid+"].rotateimage()",
    this.delay)
    > }
    > }
    >
    > function fadepic(obj){
    > if (obj.degree<100){
    > obj.degree+=10
    > if
    (obj.tempobj.filters&&obj.tempobj.filters[0]){
    > if (typeof obj.tempobj.filters[0].opacity=="number")
    //if IE6+
    > obj.tempobj.filters[0].opacity=obj.degree
    > else //else if IE5.5-
    > obj.tempobj.style.filter="alpha(opacity="+obj.degree+")"
    > }
    > else if (obj.tempobj.style.MozOpacity)
    > obj.tempobj.style.MozOpacity=obj.degree/101
    > else if (obj.tempobj.style.KhtmlOpacity)
    > obj.tempobj.style.KhtmlOpacity=obj.degree/100
    > else if
    (obj.tempobj.style.opacity&&!obj.tempobj.filters)
    > obj.tempobj.style.opacity=obj.degree/101
    > }
    > else{
    > clearInterval(fadeclear[obj.slideshowid])
    > obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")?
    obj.canvasbase+"_0" :
    > obj.canvasbase+"_1"
    > obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] :
    > document.getElementById(obj.nextcanvas)
    > obj.populateslide(obj.tempobj, obj.nextimageindex)
    >
    obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)?
    > obj.nextimageindex+1 : 0
    >
    setTimeout("fadearray["+obj.slideshowid+"].rotateimage()",
    obj.delay)
    > }
    > }
    >
    > }
    >
    >
    >
    >
    > fadeshow.prototype.rotateimage=function(){
    > if (this.pausecheck==1) //if pause onMouseover enabled,
    cache object
    > var cacheobj=this
    > if (this.mouseovercheck==1)
    > setTimeout(function(){cacheobj.rotateimage()}, 100)
    > else if (iebrowser&&dom||dom){
    > this.resetit()
    > var crossobj=this.tempobj=iebrowser?
    iebrowser[this.curcanvas] :
    > document.getElementById(this.curcanvas)
    > crossobj.style.zIndex++
    >
    >
    fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"]
    > )",50)
    > this.curcanvas=(this.curcanvas==this.canvasbase+"_0")?
    > this.canvasbase+"_1" :
    > this.canvasbase+"_0"
    > }
    > else{
    > var
    ns4imgobj=document.images['defaultslide'+this.slideshowid]
    > ns4imgobj.src=this.postimages[this.curimageindex].src
    > }
    >
    this.curimageindex=(this.curimageindex<this.postimages.length-1)?
    > this.curimageindex+1 : 0
    > }
    >
    > fadeshow.prototype.resetit=function(){
    > this.degree=10
    > var crossobj=iebrowser? iebrowser[this.curcanvas] :
    > document.getElementById(this.curcanvas)
    > if (crossobj.filters&&crossobj.filters[0]){
    > if (typeof crossobj.filters[0].opacity=="number") //if
    IE6+
    > crossobj.filters(0).opacity=this.degree
    > else //else if IE5.5-
    > crossobj.style.filter="alpha(opacity="+this.degree+")"
    > }
    > else if (crossobj.style.MozOpacity)
    > crossobj.style.MozOpacity=this.degree/101
    > else if (crossobj.style.KhtmlOpacity)
    > crossobj.style.KhtmlOpacity=this.degree/100
    > else if
    (crossobj.style.opacity&&!crossobj.filters)
    > crossobj.style.opacity=this.degree/101
    > }
    >
    >
    > fadeshow.prototype.startit=function(){
    > var crossobj=iebrowser? iebrowser[this.curcanvas] :
    > document.getElementById(this.curcanvas)
    > this.populateslide(crossobj, this.curimageindex)
    > if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE
    ONMOUSEOVER
    > var cacheobj=this
    > var crossobjcontainer=iebrowser?
    iebrowser["master"+this.slideshowid] :
    > document.getElementById("master"+this.slideshowid)
    >
    crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1}
    >
    crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0}
    > }
    > this.rotateimage()
    > }
    >
    > </script>
    >
    >
    >

  • How to remove(Delete) multiple agents from SCOM console

    Hello Experts,
    We are using scom 2012 and monitoring around 10000 agents in our environment.  Now Windows team decomissioned around 1000 server/clients and we need to remove those agents(grayed agents) from console.
    It is very difficult to find and delete the agent one by one.  Is there any script to remove/delete the agent from console?
    Thanks in advance.
    Regards
    Karthick

    Hi,
    In addition,several ways to remove SCOM agent if SCOM console fails.
    1. Add/Remove Programs (appwiz.cpl)
    2. Run (MsiExec.exe /uninstall {E7600A9C-6782-4221-984E-AB89C780DC2D} /quiet)
    3. psexec -d MsiExec.exe /uninstall {E7600A9C-6782-4221-984E-AB89C780DC2D} /quiet *
    Here are some links about using PowerShell remove Agents:
    - http://support.micro...b/2626752/en-us
    -  http://technet.micro...y/hh545186.aspx
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • E72 - How to Remove Home Screen Links

    Hello,
    I have a Nokia E72 and I have a customization problem. I have a gmail account installed in the phone and there is a homescreen link for it, just under the applications bar at the top. The thing I want to delete this link from my home screen but there is no settings for it. This link is not seen in home screen customization links in mod settings nor in the mail settings. Can you help me how to delete this from home screen?

    Go in your type of usage (businness/personal), email notify, email ---> no
    E72-1 Zodium Black No Brand
    type: RM-530 FW: 071.004

  • I have iPhone 4s, and using latest iOS. When I try to open any link from Twitter or Facebook, it goes to open some wrong webpage. My iphone seems to be infected or suffering from some spyware or malware. How can I remove this wrong link opening

    I have iPhone 4s, and using latest iOS. When I try to open any link from Twitter or Facebook, it goes to open some wrong webpage. My iphone seems to be infected or suffering from some spyware or malware. How can I remove this wrong link opening ? Please help me to resolve...

    I think the McAfee suite will do the trick when I pay them a one-time fee of $69 or $179 for a year for unlimited support.
    Your call of course but IMO a waste of money. Please read this first:
    There are many forms of ‘Malware’ that can affect a computer system, of which ‘a virus’ is but one type, ‘trojans’ another. Using the strict definition of a computer virus, no viruses that can attack OS X have so far been detected 'in the wild', i.e. in anything other than laboratory conditions. The same is not true of other forms of malware, such as Trojans. Whilst it is a fairly safe bet that your Mac has NOT been infected by a virus, it may have another security-related problem, but more likely a technical problem unrelated to any malware threat.
    You may find this User Tip on Viruses, Trojan Detection and Removal, as well as general Internet Security and Privacy, useful:
    https://discussions.apple.com/docs/DOC-2435
    The User Tip (which you are welcome to print out and retain for future reference) seeks to offer guidance on the main security threats and how to avoid them.
    More useful information can also be found here:
    http://www.reedcorner.net/mmg/

  • I was downloading podcast video in my itouch using wifi, but suddenly my wifi got disconnected and now there is a link in my podcast list which on opening uses wifi to play that video. I want to delete that link. Right to left swapping is not working.

    I was downloading podcast video in my itouch using wifi, but suddenly my wifi got disconnected and now there is a link in my podcast list which on opening uses wifi to play that video. I want to delete that link. Right to left swapping is not working.

    I bet this is too late but...
    Are you trying to print through the airport express wirelessly or the built in wireless of the lexmark? If you want to use the airport express, there is no need to mess with the wireless printing on the lexmark at all. The airport express will be easy to set up, all the wireless setups through the printers are a pain.

  • How Can I Remove All the Links in a Document?

    I want to remove all the internal and external bound links in
    a number of my html documents. Is there any way I can do this with
    one action. I tried using Control + F on </a> and replacing
    it with nothing and that works. But Control + F on <a
    href="URL"> doesn't work as the url for that is different every
    time.
    Is it possible to remove all the links in one sweep, I hate
    to do it manually one by one as there are just so many?

    Tanim23 wrote:
    > Is it possible to remove all the links in one sweep
    Yes. In the Find and Replace dialog box, set Search to
    Specific Tag, and
    select a in the drop-down menu alongside. Then set Action to
    Strip Tag.
    You can do this in the current document, a particular folder,
    or the
    entire site, depending on what you select in the Find in
    drop-down menu.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS4",
    "PHP Solutions" & "PHP Object-Oriented Solutions"
    http://foundationphp.com/

  • How Can I Remove the Home Link on the Main Page

    I am using PT 8.49 and I am creating a custom page where the only options I'd like to show on the page are my custom menu option and "Sign out" at the top right. I'd like to remove the "Home" link on the top right menu because I am doing the selection for them. I don't want them to be able to go back to the Home menu once they've entered my custom page. I have everything working the way I'd like except that I cannot get rid of the "Home" link. Can anyone help with that?
    I am also using a template in portal called HOMEPAGE_DESIGNER_TEMPLATE as this causes the page to display without the left menu, as I want it to be.
    Thanks for your help!

    Restore the default home page
    * https://support.mozilla.com/en-US/kb/How%20to%20set%20the%20home%20page#w_restore-the-default-home-page
    Now, set a single web site as your home page
    * https://support.mozilla.com/en-US/kb/How%20to%20set%20the%20home%20page#w_set-a-single-web-site-as-your-home-page
    Check and tell if its working.

  • How to delete the links in the reading list

    How to delete the links in the reading list

    and if they don't delete, what's the next step?  I've stopped sync to iCloud for my iPad, but all of the articles say that they are "Waiting", and won't delete.

  • How do I delete a link in the link panel?

    I have moved an item out of the links folder on a project I am working on in IDCC and when opening the project it tells me, rightly, that a link is missing. When I go to the links panel I see the alert that the linked item is missing, which I know, and I want to delete the link in the links panel but see no option to do this, also the delete key does nothing when the item is highlighted, and right-click (^ click) offer no delete choice either. How can I delete this item in the links panel?
    TIA,
    Ken

    Amazing how the hot weather has affected me. Thank You Peter - so logical - I missed it while thinking of 15 other elements and a hurried deadline...

Maybe you are looking for