[codenameone-discussions] Re: Capture.capturePhoto on Samsung s6 doesn't capture it just takes you to the app

2016-09-08 Thread Shai Almog
You can do it with native interfaces but not with our current abstraction. 
We might introduce a lower level camera library at a later date.

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/bc0326a5-13c0-4851-8488-c9797d96ac54%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: Can't get new animation manager working

2016-09-08 Thread Shai Almog
Hi,
you don't need the animate() call. It's a completely different thing. There 
is one animation manager per form so tf.getAnimationManager() should work.

I see an issue in our implementation, we'll try to push it out to the 
update coming out today.

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/f8b94401-2493-4777-bb9f-f6be5436d363%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Capture.capturePhoto on Samsung s6 doesn't capture it just takes you to the app

2016-09-08 Thread kerryshih2
Is there a way to take the photo w/o user interaction? The notes sure seem 
to make it should like it just takes it and doesn't require user 
interaction.

Thanks

If you are experiencing an issue please mention the full platform your 
issue applies to:
IDE: NetBeans/Eclipse/IDEA
Desktop OS
Simulator 
Device

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/ed4df58d-4526-4e85-94a1-b2b1c3c0b19f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [codenameone-discussions] UWP Overflow menu commands stopped displaying correctly

2016-09-08 Thread Steve Hannah
This is now fixed.  Will be on the build server soon.  (I think tomorrow,
but don't quote me on that).

Steve

On Wed, Aug 31, 2016 at 9:58 PM, Bryan Buchanan  wrote:

> On Thursday, September 1, 2016 at 2:56:17 PM UTC+10, Steve Hannah wrote:
>>
>> OK.  So not a regression.  Just a problem with windows store builds that
>> was probably always there.  Lovely.
>>
>
> Quite likely.
>
> Isn't being a software developer such fun :)
>
> --
> You received this message because you are subscribed to the Google Groups
> "CodenameOne Discussions" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to codenameone-discussions+unsubscr...@googlegroups.com.
> Visit this group at https://groups.google.com/
> group/codenameone-discussions.
> To view this discussion on the web visit https://groups.google.com/d/
> msgid/codenameone-discussions/7ef2982e-0e4a-448d-8b25-
> b13491ba5c64%40googlegroups.com
> 
> .
>
> For more options, visit https://groups.google.com/d/optout.
>



-- 
Steve Hannah
Software Developer
Codename One
http://www.codenameone.com

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/CAGOYrKVqX7dotCSZT0G%2BtG0xBG%2B6GTEQ%2BSDA6eQDnOgDWP%2BKCQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Can't get new animation manager working

2016-09-08 Thread Jérémy MARQUER
Hello,

I've tried new animation methods such as createStyleAnimation, 
createLayoutAnimation etc.

But I can't get it worked !

For example : 

ComponentAnimation[] ca = new ComponentAnimation[4];
for (int i = 0; i < 4; i++) {
if (i % 2 == 0) {

ca[i] = tf.createStyleAnimation("TextFieldVerrouillageInvalide", 500);
} else {

ca[i] = tf.createStyleAnimation("TextFieldVerrouillage", 500);
}
}

tf.getParent().getAnimationManager().addAnimation(ComponentAnimation.sequentialAnimation(ca));
tf.getParent().animate();

"tf" is a Textfield : I would like to switch its color to red and blue four 
times ...

I've tried with addAnimationAndBlock too.

Thanks.

-- 
You received this message because you are subscribed to the Google Groups 
"CodenameOne Discussions" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to codenameone-discussions+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/codenameone-discussions.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/codenameone-discussions/bd612d01-4e11-4061-9ad0-09a209e9dc45%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.