Animate A Fade-In Of A NSWindow With Objective-C
Copy this code and paste it in your HTML
float alpha = 0.0;
[window setAlphaValue:alpha];
[window makeKeyAndOrderFront:self];
for (int x = 0; x < 10; x++) {
alpha += 0.1;
[window setAlphaValue:alpha];
}
}
Report this snippet
Comments
Subscribe to comments