Skip to content

Instantly share code, notes, and snippets.

@davelyon
Created August 2, 2010 14:53
Show Gist options
  • Save davelyon/504755 to your computer and use it in GitHub Desktop.
Save davelyon/504755 to your computer and use it in GitHub Desktop.
# Define an image as below, you can call it anything, and you can have several -- e.g. ActiveRegion_AIA171, ActiveRegion_AIA090
class ActiveRegionImage < Image
layer :id => 1, :visible => :true, :opacity => 100
types ["mobile","web"]
scale 2.63
end
class ActiveRegionMovie < Movie
layer :id => 1, :visible => :true, :opacity => 100
types ["mobile","web"]
scale 2.63
number_of_frames 200
framerate 10
backdate_start_time :hours => 6, :minutes => 0, :seconds => 0
end_movie_after :hours => 18, :minutes => 0, :seconds => 0
end
class ActiveRegion < HelioEvent
shortname "AR"
has_image ActiveRegionImage
has_movie ActiveRegionMovie
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment