
Aaron Paterson
Hey guys I'm talking some time out to work on modules ripple effect for an fab. it's kinda easy, but only if it works…
See the attached what I'm trying to accomplish.
Also my module folder has the 'rippleModule.coffee' file
http://share.framerjs.com/7va8i9430rpe/
I'm at a lose now.
# Import the ripple transition module
rippleModule = require "rippleModule"
# Define the animationOptions object
animOps = {
curve:"cubic-bezier(0.75, 0, 1, 1)"
time:0.3
}
# Create the 2 layers to switch between
fab1 = new Layer
x:0, y:0, width:100, height:100, borderRadius: "50%", backgroundColor:"black"
fab2 = new Layer
x:0, y:0, width:100, height:100, borderRadius: "50%", backgroundColor:"blue"
# Call module to create the ripple object
ripl = rippleModule.ripple fab1, fab2, fab1.midX, fab1.midY, animOps
# On button tap, toggle the ripple's states: fill, empty
fab1.on Events.TouchEnd, (event, layer) ->
ripl.states.next "fill", "empty"

Taylor Wright
Is it possible to get the mouse position without using an event?

Koen Bok
Fun experiment. I have been thinking on a nice way to handle positioning and positioning updates in Framer. Apple for example has autolayout, but while it's very powerful I find it hard to use for simple things and overkill for Framer.
So I came up with layer.anchor. You use it with 6 simple rules: top, left, right, bottom, centerX, centerY. Like this: layer.anchor({top:100, left:100}). It will then stick to this position, also when resizing the window.
Here is a module project to play around and see how you like it: http://share.framerjs.com/r9yd2nqg8kpo/
It's just testing so these things are unsolved:
- What happens with animations and anchoring? Who wins?
- What to do with unsolvable rules (centerX:0 and unequal left and right).
- Only works fullscreen for now.

Christian Schaf
[SOLVED]
Hi guys, I have a Problem. I created a module called Marker. It contains a class and extends from Layer. Now i want handle a click on it self.No clicks on a single Marker will recognized. What can I do? The file is located in ./app/modules
Project: https://github.com/cschaf/tourist-app

Chris Camargo
Sooo... Open a new Framer file. Set Viewer to iPhone 6. Do "print Screen.width". Result printed in Framer Studio: 750. Result printed on iPhone 6 in Frameless: 980.
EDIT: Starting to sound like an iOS 9 Beta bug?

Varun Yellina
I'm used to installing apps via Homebrew cask. Framer studio was available via cask, but after the recent change in versions it is no longer the latest. I'm trying to update the formula but need a static download link. the current one from cdn.hockeyapp isn't static. Koen Bok can you help?

Koen Bok
Some pretty great new updates to Safari 9.1. I especially like the new inspector look. Another improvement is the removal of the tap delay on mobile. All this will appear in Framer Studio as soon as it is released too.

Zafar Shah
Mohafiz acknowledge all the women out there for the wonders they do each day!
https://www.facebook.com/meraymohafiz/videos/1680648525544920/

Adria Jimenez
Koen Bok Benjamin Den Boer is this a bug? It seems like copy() is not respecting layer names in the layer inspector and then the layer inspector seems to be buggy when mouse over the layer names
https://monosnap.com/file/hAx2iy3v7JuAFJLWcCqN7oDxvmW3TA.png
Here is a prototype to test http://share.framerjs.com/k5swyk4iz281/

Marc Krenn
Hey Frameristos,
Chris Aga and I were working on a magnifying effect yesterday and I think it turned out pretty cool :)
Grab it here: https://tr.im/magnifyingGlass

Jacek Stryk
Anyone having problems when Framer is in a directory that has spaces in its filename like "System>Users>User 1>Desktop"?
Interestingly, when Sketch layers are imported only the latest on renders when Framer is on a path containing space. With no space in the path all Sketch imported layers are visible.
Should I avoid having Framer in a directory that has spaces in its path?

Jacek Stryk
I have a videoLayer I'm trying to create a border around with:
VideoLayer.style["outline"] = "1px solid red"
I want the border to be overlaid on top of the video so tried with
VideoLayer.style["outline-offset"] = "1px"
but that does render the border on the layer behind the video.
Is there a way of rendering the outline ON top of the VideoLayer but INSIDE of the video so it overlays the video?
Thanks for any hints!