Sha256: a4f37473321a0925137375c094109a2525733aa3fef5c33c0a130ac6d9251aca

Contents?: true

Size: 518 Bytes

Versions: 2

Compression:

Stored size: 518 Bytes

Contents

camera({atome_id: :camera_id, width: 777,height: 333, x: 33, y: 333,  shadow: {blur: 6 , thickness: 1, x: 3, y:3, color: :black}})
b = box({ x: 200, y: 200, color: :white })
t1=b.text('Stop')
c = circle({ y: 200, color: :pink })
t=c.text('Rec')
c.touch do
  b.color(:white)
  c.color(:red)
  t.content("recording")
  t1.content(:stop)
  `
    recorderHelper.startRecording()
  `
end
b.touch do
  b.color(:black)
  c.color(:pink)
  t.content(:stop)
  t1.content(:stopped)

  `
    recorderHelper.stopRecording()
  `
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
atome-0.4.7.0 vendor/assets/build/medias/rubies/examples/Old_examples/media_recorder.rb
atome-0.4.5.4 vendor/assets/build/medias/rubies/examples/Old_examples/media_recorder.rb