[codenameone-discussions] Re: ios screenshots

2019-02-10 Thread bryanb
OK, thanks. I've misunderstood the Launch Storyboard and meta-data 
screenshots. All good now, I think.

On Monday, February 11, 2019 at 1:31:40 PM UTC+10, Shai Almog wrote:
>
> As far as I understand this refers to the screenshots submitted in the 
> meta-data portion of the itunes upload process. One of the "app 
> screenshots" is a splash screen but you need a screenshot that's more 
> descriptive of what you are doing.
>

-- 
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/33c3d9c0-9156-4329-a2ba-ec2d0b4b291c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Playing Audio stream No sound played !

2019-02-10 Thread fromyoyotill
My Code the stream play in web browser not in app even I tried to play by 
method after that is print playing 
Issue 1) I couldn't set Icon even I set Icon it was now displayed
   2) There is no sound played , I tried in simulator and actual 
Android device No sound...  


Media audio = MediaManager.createMedia("
http://station.voscast.com/5c4758698ef40/;, true);
  //  audio.prepare();
 
Display.getInstance().callSerially(() -> {
final MediaPlayer player = new MediaPlayer(audio);
player.setAutoplay(true);

   try{ 
 
image1 =Image.createImage("/"+"Play.png");
  im =Image.createImage("/"+"Pouse.png");

   }catch(Exception ee){ee.printStackTrace();}
 image1=image1.scaled((400),(400));
   
audio.setVolume(100);


 audio.play();
 
 
  audio.setVolume(100);
 
 
   System.out.println("Volume ? "+ audio.getVolume());

   System.out.println("Is playing ? "+ audio.isPlaying());
  
player.setPlayIcon(image1.scaled((50),(50)));

  player.setPlayIcon(im.scaled((50),(50)));

audio.setNativePlayerMode(false);
radio.add(BorderLayout.CENTER, player);
radio.revalidate();
///

It Displaying just a progress bar , That's it nothing Else.. Please assist 
me it's very urgent...

-- 
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/7f532432-b0ce-446c-8e58-8b3f294b259d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [codenameone-discussions] Re: Playing Audio stream No sound played !

2019-02-10 Thread Sathyaseelan Anton Arulvannan
Got it , Thanks.

On Mon, Feb 11, 2019 at 9:04 AM Shai Almog  wrote:

> Most native media players won't play a radio stream "as is". Web radio
> streams are encoded slightly differently as far as I know. Also this
> doesn't seem like the correct URL to the stream, it looks like the URL to
> the HTML that would play the stream.
>
> --
> You received this message because you are subscribed to a topic in the
> Google Groups "CodenameOne Discussions" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/codenameone-discussions/2xB7cenl7G8/unsubscribe
> .
> To unsubscribe from this group and all its topics, 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/aa6a7fdc-2771-4414-9894-7d3e06179bd3%40googlegroups.com
> 
> .
> For more options, visit https://groups.google.com/d/optout.
>

-- 
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/CAGZX6Adzr6J8Jq45ZAq6FG9y5Q1wpC84neWZei%2BoXEGk2m_PEA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Playing Odeo Stream ,No sound I hear

2019-02-10 Thread fromyoyotill
My Code the stream play in web browser not in app even I tried to play by 
method after that is print playing 
Issue 1) I couldn't set Icon even I set Icon it was now displayed
   2) There is no sound played , I tried in simulator and actual 
Android device No sound...  


Media audio = 
MediaManager.createMedia("http://station.voscast.com/5c4758698ef40/;, true);
  //  audio.prepare();
 
Display.getInstance().callSerially(() -> {
final MediaPlayer player = new MediaPlayer(audio);
player.setAutoplay(true);

   try{ 
 
image1 =Image.createImage("/"+"Play.png");
  im =Image.createImage("/"+"Pouse.png");

   }catch(Exception ee){ee.printStackTrace();}
 image1=image1.scaled((400),(400));
   
audio.setVolume(100);


 audio.play();
 
 
  audio.setVolume(100);
 
 
   System.out.println("Volume ? "+ audio.getVolume());

   System.out.println("Is playing ? "+ audio.isPlaying());
  
player.setPlayIcon(image1.scaled((50),(50)));

  player.setPlayIcon(im.scaled((50),(50)));

audio.setNativePlayerMode(false);
radio.add(BorderLayout.CENTER, player);
radio.revalidate();
///

It Displaying just a progress bar , That's it nothing Else.. Please assist 
me it's very urgent...

-- 
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/07b2ee50-6f9e-4ccf-be41-a5e2f0d03d8e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: Playing Audio stream No sound played !

2019-02-10 Thread Shai Almog
Most native media players won't play a radio stream "as is". Web radio 
streams are encoded slightly differently as far as I know. Also this 
doesn't seem like the correct URL to the stream, it looks like the URL to 
the HTML that would play the stream.

-- 
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/aa6a7fdc-2771-4414-9894-7d3e06179bd3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[codenameone-discussions] Re: ios screenshots

2019-02-10 Thread Shai Almog
As far as I understand this refers to the screenshots submitted in the 
meta-data portion of the itunes upload process. One of the "app 
screenshots" is a splash screen but you need a screenshot that's more 
descriptive of what you are doing.

-- 
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/d09865c9-d1a8-43cb-a94a-52f13fa4be13%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.