view_get_yview

Returns the y position (top side) of the current viewport.

Example, called from article1_update.gml:

// destroys articles out of the upper view side:
if (y < view_get_yview()) {
instance_destroy();
}