User Profile

Collapse

Profile Sidebar

Collapse
toxicpaint
toxicpaint
Last Activity: Aug 7 '09, 02:40 PM
Joined: Sep 21 '06
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • toxicpaint
    replied to Fade movieclip on mouseout
    Nice one. :)

    Your message is too short please enter 20 characters or more.
    See more | Go to post

    Leave a comment:


  • toxicpaint
    replied to Fade movieclip on mouseout
    There must be an answer to this! Anyone? =/
    See more | Go to post

    Leave a comment:


  • toxicpaint
    started a topic Fade movieclip on mouseout

    Fade movieclip on mouseout

    Hi Everyone,

    I've had a look around but couldn't find any answers so thought I'd ask you lot. :)

    I'm using actionscript 2.0. What I have on my stage is a button that when you mouse over it, pops up a movie clip. Then when you move you mouse off it, it disappears after about 3 seconds. What I'd like it to do is fade out after 3 seconds rather than disappearing. For some reason this seems to be pretty much impossible with...
    See more | Go to post

  • toxicpaint
    replied to Drop quality for more usabilty?
    Thanks alot. Interesting stuff....
    See more | Go to post

    Leave a comment:


  • toxicpaint
    started a topic Drop quality for more usabilty?

    Drop quality for more usabilty?

    Hi all,

    I'm in a bit of a predicament as to what I should do with our site in terms of mobile browsing.

    I've built the site and it looks good pretty much across the board and now I'm thinking about people who don't sit at a desk and browse the site.

    The problem is that the site looks great at the moment on the iPhone and iPod touch without a mobile device styesheet. If I enable a stylesheet to alter the...
    See more | Go to post

  • toxicpaint
    started a topic A predicament

    A predicament

    Hi all,

    I'm in a bit of a predicament as to what I should do with our site in terms of mobile browsing.

    I've built the site and it looks good pretty much across the board and now I'm thinking about people who don't sit at a desk and browse the site.

    The problem is that the site looks great at the moment on the iPhone and iPod touch without a mobile device styesheet. If I enable a stylesheet to alter the...
    See more | Go to post

  • toxicpaint
    replied to Show a div only if it has content
    Thanks for the tips. Will do!...
    See more | Go to post

    Leave a comment:


  • toxicpaint
    replied to Show a div only if it has content
    Fantastic. Works a treat. :D

    Solution:
    Code:
    <script language="javascript">
    function changeclass()
    {document.getElementById("downloadbox").className="hidden"; }
    if (document.getElementById("downloadbox").innerHTML == "&nbsp;") {
    changeclass();
    }
    </script>
    See more | Go to post
    Last edited by acoder; Nov 25 '08, 10:32 AM. Reason: Added [code] tags

    Leave a comment:


  • toxicpaint
    replied to Show a div only if it has content
    Ah. I had the doctype as Strict..
    See more | Go to post

    Leave a comment:


  • toxicpaint
    replied to Show a div only if it has content
    Sounds like the right route to go down, but I can't seem to get it to work..

    Here's what I've got:

    Code:
    <div id="downloadbox">&nbsp;</div>
    <script language=javascript>
    if (downloadbox.innerHTML == "&nbsp;") {
    alert("sometext");
    }
    ...
    See more | Go to post
    Last edited by acoder; Nov 25 '08, 10:16 AM. Reason: Added [code] tags

    Leave a comment:


  • toxicpaint
    replied to Show a div only if it has content
    Thanks for the reply.

    I would use asp or aspx, but they are disabled on the server.. =/

    Do you have any tutorials on checking the innerHTML content, please?...
    See more | Go to post

    Leave a comment:


  • toxicpaint
    started a topic Show a div only if it has content

    Show a div only if it has content

    Hi Guys,

    I've found a few scripts to hide a div when a button is clicked, but these aren't quite what I'm looking for.

    I'm using adobe contribute to update my site and therefore I need to have a downloads box (a simple div with just a non-breaking space character in). What I'd like to happen is to have this on every page by default and have a little script test it. If the box has a non-breaking space in, hide it, if...
    See more | Go to post

  • toxicpaint
    replied to What should be a simple if statement!
    in .NET
    It's the comparing bit I have a problem with.. How do I code this?:

    If dateopened = trainingdate then
    templateifeld's css proerty is "hide"

    I don't know how to get vb to pull the values from the datatbase, you see.. =/...
    See more | Go to post

    Leave a comment:


  • toxicpaint
    started a topic What should be a simple if statement!
    in .NET

    What should be a simple if statement!

    Hi everyone,

    I have a problem which I'm sure should be very simple to solve, but I can't work out why!

    Background:
    I'm using visual studio to create apsx, access and vb pages. I have a DetailsView displaying information about a 5 step process. At the admin side, the user ticks a box for each stage. the user side then displays this to the user so they can see where the admin side are up to with their request....
    See more | Go to post

  • Thank you. I've spent hours looking through every bloody option in visual studio and comlpetely overlooked this one!...
    See more | Go to post

    Leave a comment:


  • toxicpaint
    replied to Dynamic DIV
    Do you mean that you can't set a height on your divs as you don't know how tall they are going to be?

    If this is the case, use

    _height: 200px;
    min-height: 200px;

    _height is read by IE, but ignored by firefox. This is good because Firefox uses absolute heights, so if you put a background image or border, the contents will spill over the top and look sketchy. Therefore using "height: 200px;"...
    See more | Go to post

    Leave a comment:


  • toxicpaint
    replied to An SQL Statement gone wrong!
    Sorted!

    SELECT audits.ID, audits.QuickNam e, audits.Status, Person.PersonID , Person.Admin

    FROM ((audits INNER JOIN allowed ON audits.ID = allowed.AuditNu m) INNER JOIN Person ON allowed.PersonI D = Person.PersonID )

    WHERE (Person.PersonI D = ? OR ? = 1) AND (audits.Status = 'Closed')
    See more | Go to post

    Leave a comment:


  • toxicpaint
    started a topic An SQL Statement gone wrong!

    An SQL Statement gone wrong!

    I'm using visual studio 2005 with ASPX + VB and Access.

    Can someone help me with this, please. What I want the SQL to do is display all closed audits. The problem is that only certain people are allowed to see certain audits. So I want people to only see closed audits where they have rights. This is done by a PersonID (stored in a session). The only other people who can see closed audits are Admin staff, who have an admin value of...
    See more | Go to post

  • toxicpaint
    started a topic ASPX/VB Problem with a login page
    in .NET

    ASPX/VB Problem with a login page

    Hi,

    I'm very nearly there with this. I'm just having a problem with an if statement.

    I'm using ASPX and VB with Access

    I've created a Username text box (txtUN) and a Password text box (txtPW)

    The datasource queries the database for all user names and passwords where username = txtUN and password = txtPW.

    I have an if statement on the log in button which is as follows:
    ...
    See more | Go to post

  • toxicpaint
    replied to Checking an IFrame's contents
    Hi Luke,

    I can't use the server as it can only be seen by the subnet. It's completely blocked by a firewall so no-one outside of the subnet can see anything published on it - which is why people will get an error page in the iframe..

    Cheers,

    Tom...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...