Adblock breaks this site

fade in-out / opacity effect. --> SOURCE

Discussion in 'Programming General' started by Admigo, Feb 14, 2010.

  1. Admigo

    Admigo Member

    Joined:
    Jan 23, 2010
    Posts:
    89
    Referrals:
    2
    Sythe Gold:
    0
    fade in-out / opacity effect. --> SOURCE

    removed because no replies
     
  2. R3KoN

    R3KoN Newcomer

    Joined:
    Apr 30, 2010
    Posts:
    3
    Referrals:
    0
    Sythe Gold:
    0
    fade in-out / opacity effect. --> SOURCE

    rofl, like this is even hard? there is an opacity property for a reason.

    hint:
    use a timer and increase opacity of control by x every tick
     
  3. Blupig

    Blupig BEEF TOILET
    $5 USD Donor

    Joined:
    Nov 23, 2006
    Posts:
    7,145
    Referrals:
    16
    Sythe Gold:
    1,609
    Discord Unique ID:
    178533992981594112
    Valentine's Singing Competition Winner Member of the Month Winner MushyMuncher Gohan has AIDS Extreme Homosex World War 3 I'm LAAAAAAAME
    Off Topic Participant
    fade in-out / opacity effect. --> SOURCE

    Code:
    sub fade(byval fadeout as boolean, byref frm as form)
    if fadeout = true then
    for i as integer = 0 to (frm.opacity * 100)
    frm.opacity = frm.opacity - 0.01
    system.threading.thread.sleep(50)
    next i
    else
    frm.opacity = 0
    for i as integer = 0 to 100
    frm.opacity = frm.opacity + 0.01
    system.threading.thread.sleep(50)
    next i
    end if
    end sub
    Completely freehand, might not even work, idk it's 3am.
     
  4. Harlem9191

    Harlem9191 Member

    Joined:
    Mar 10, 2009
    Posts:
    81
    Referrals:
    0
    Sythe Gold:
    0
    fade in-out / opacity effect. --> SOURCE

    Would work Blupig but your loop does exactly the same job as a timer :D
     
  5. Blupig

    Blupig BEEF TOILET
    $5 USD Donor

    Joined:
    Nov 23, 2006
    Posts:
    7,145
    Referrals:
    16
    Sythe Gold:
    1,609
    Discord Unique ID:
    178533992981594112
    Valentine's Singing Competition Winner Member of the Month Winner MushyMuncher Gohan has AIDS Extreme Homosex World War 3 I'm LAAAAAAAME
    Off Topic Participant
    fade in-out / opacity effect. --> SOURCE

    No point in having form elements in something that might be included in an external library, now is there?
     
< i need sony vegas! | need help plsss :( >


 
 
Adblock breaks this site