REM *********************************************** REM Title: argb function REM Author: Unknown REM Downloaded from: http://dbcc.zimnox.com/ REM *********************************************** function argb(a,r,g,b) c = (a*16777216)+(r*65536)+(g*256)+b endfunction c