Re: [e-users] remove Edge part stack binding.

2013-06-07 Thread The Rasterman
On Fri, 07 Jun 2013 14:12:27 +0530 "Anurag.ots" said: yes - u can stack from code and animate from edje. it's meant to be interchangeable so you can refer to "meta objects" that instead of being custom coded c++ or c classes/objects are data files loaded from disk that you can replace at runtime

Re: [e-users] remove Edge part stack binding.

2013-06-07 Thread Anurag.ots
Carsten Haitzler wrote: My rects are edje objects and My stacking is not static.. I have to change order dynamically when ever I do movement or animation. According to you I should not design like this? Or is it ok to do animation from edje and ordering from app code? Please suggest me.. On

Re: [e-users] remove Edge part stack binding.

2013-06-07 Thread The Rasterman
On Fri, 07 Jun 2013 12:31:02 +0530 "Anurag.ots" said: > > > Carsten Haitzler wrote: > > > > That means I have to take care of rotation or movement in my edc and stacking > in application code. Can it lead to sync issues? it could. you shouldnt mess with edje internal objects, so do any sta

Re: [e-users] remove Edge part stack binding.

2013-06-06 Thread Anurag.ots
Carsten Haitzler wrote: That means I have to take care of rotation or movement in my edc and stacking in application code. Can it lead to sync issues? On Fri, 07 Jun 2013 11:20:27 +0530 "Anurag.ots" said: oh inside an edje object... no - u cant. stacking is fixed inside edje. > > > Car

Re: [e-users] remove Edge part stack binding.

2013-06-06 Thread The Rasterman
On Fri, 07 Jun 2013 11:20:27 +0530 "Anurag.ots" said: oh inside an edje object... no - u cant. stacking is fixed inside edje. > > > Carsten Haitzler wrote: > > Hi , > Thanks for your reply. > I want to remove this stack binding in edje edc itself. > Is there a way to do it in edc?? > > Than

Re: [e-users] remove Edge part stack binding.

2013-06-06 Thread Anurag.ots
Carsten Haitzler wrote: Hi , Thanks for your reply. I want to remove this stack binding in edje edc itself. Is there a way to do it in edc?? Thanks, Anurag On Fri, 7 Jun 2013 08:26:50 +0530 "378anurag ." said: objects by default are stacked in order of creation (new objects go on top of the

Re: [e-users] remove Edge part stack binding.

2013-06-06 Thread The Rasterman
On Fri, 7 Jun 2013 08:26:50 +0530 "378anurag ." said: objects by default are stacked in order of creation (new objects go on top of the stack). you can modify stacking with: evas_object_raise() evas_object_lower() evas_object_stack_above() evas_object_stack_below() for toplevel objects (they ha

[e-users] remove Edge part stack binding.

2013-06-06 Thread 378anurag .
Hi, I have created three rect in a group and i am trying to move their position on left or right on button click respectively. Problem that i am getting-: rect created at the last in group is always on top like stack. suppose I have created rect_A,rect_B,rect_C and i positioned rect_B to left ,re