AeroスタイルはWindows10では使えないようですが、
代わりにSetWindowCompositionAttributeというAPIでアクリル表示ができるようです。
(Windows8で使えるかどうかはよくわかりませんでした)
ただ、非公開APIということで公式な資料はないようで、
仕様については有志が試行錯誤で調べているようでした。
//参考:https://withinrafael.com/2015/07/08/adding-the-aero-glass-blur-to-your-windows-10-apps/
//https://stackoverflow.com/questions/32724187/how-do-you-set-the-glass-blend-colour-on-windows-10
#define global ctype abgr(%1=0,%2=0,%3=0,%4=0) ( ((%1)<<24) | ((%2)<<16) | ((%3)<<8) | (%4) )
#include "user32.as"
#func SetWindowCompositionAttribute "SetWindowCompositionAttribute" int,int
dim data,3
dim accent,4
g_color=abgr(127,0,0,0) //GradientColor(基本となる色?)。a(不透明度),b(青),g(緑),r(赤)を0〜255で指定。
//不透明度が小さいほど透過しやすくなる。
accent=3,2,g_color,0 //ACCENT_ENABLE_BLURBEHIND = 3
data=19,varptr(accent),16 //WCA_ACCENT_POLICY = 19
SetWindowCompositionAttribute hwnd,varptr(data)
color 0,0,0 : boxf
color 255,255,255
mes "あいうえお"