Welcome to TalkGraphics.com
Page 3 of 12 FirstFirst 12345 ... LastLast
Results 21 to 30 of 118
  1. #21
    Join Date
    Aug 2000
    Location
    London UK
    Posts
    239

    Default Re: What I'd like to see in Web Designer

    Yeah, it weas a bit much to expect but I'm grateful for the speed and courtesy with which my request was handled, awesome, I'll look at it anyway as an alternative to NOF
    Jon
    IP

  2. #22

    Default Re: What I'd like to see in Web Designer

    The ability to switch on / off the underline on text links per link as well as for the whole site like you have now.
    IP

  3. #23

    Default Re: What I'd like to see in Web Designer

    Why not just disable underlined links site-wide and then manually underline those you want underlined?? (with a line)
    IP

  4. #24

    Default Re: What I'd like to see in Web Designer

    Because.. er... it.. er *ahem* didn't occur to me... *whistle*.
    IP

  5. #25

    Default Re: What I'd like to see in Web Designer

    When clicking on a group of objects can you tell whether it's soft grouped or not? Perhaps colouring the four corner handles, say red, could indicate the group is soft grouped.
    IP

  6. #26
    Join Date
    Nov 2000
    Location
    Red Boiling Springs TN USA
    Posts
    19,208

    Default Re: What I'd like to see in Web Designer

    Nicky the status line tells many things about the selected objects. See attached image.
    Attached Thumbnails Attached Thumbnails Click image for larger version. 

Name:	softgroup.gif 
Views:	401 
Size:	2.2 KB 
ID:	57260  
    Attached Images Attached Images  
    Soquili
    a.k.a. Bill Taylor
    Bill is no longer with us. He died on 10 Dec 2012. We remember him always.
    My TG Album
    Last XaReg update
    IP

  7. #27
    Join Date
    Aug 2004
    Location
    Ukraine
    Posts
    3,904

    Default Re: What I'd like to see in Web Designer

    look at the status bar (at the bottom of the WD window). It constantly says what is currently selected.

    edit: you beat me a 1 minute Bill!
    John.
    IP

  8. #28

    Default Re: What I'd like to see in Web Designer

    Doh, I should really think about these things before posting shouldn't I!
    IP

  9. #29

    Default Re: What I'd like to see in Web Designer

    Just a little note about putting things in the header (when it's implemented). I have huge amounts of code that go into the header, like this:

    Code:
    <script type="text/javascript">
     
    var fadeimages=new Array()
    //SET IMAGE PATHS. Extend or contract array as needed
    fadeimages[0]=["images/resizedlogos/caribbean.png", "", ""] //plain image syntax
    fadeimages[1]=["images/resizedlogos/charlieshift.png", "", ""] //image with link syntax
    fadeimages[2]=["images/resizedlogos/madladlogo.png", "", ""] //image with link and target syntax
    fadeimages[3]=["images/resizedlogos/nenedigital.png", "", ""] //plain image syntax
    fadeimages[4]=["images/resizedlogos/scanddib.png", "", ""] //plain image syntax
    var fadebgcolor="#e6ebff"
    
    ////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;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;left: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)
    }
    }
    ...
    ...
    So a nice big window (may be resizeable), unlike the placeholder window, would be ideal.

    Note: The code is twice as long but you're only allowed 5000 characters on the forum.
    IP

  10. #30
    Join Date
    Jan 2004
    Location
    Holland Patent, NY, USA
    Posts
    605

    Default Re: What I'd like to see in Web Designer

    Quote Originally Posted by nickydude View Post
    Just a little note about putting things in the header (when it's implemented). I have huge amounts of code that go into the header, like this:
    I agree about the need to edit <head></head> content.

    However, in this case I would reduce it to a simple reference to an included file in the form of:

    <script src="/js/myjscript.js" type="text/javascript"></script>
    IP

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •