BlackBerry Forums Support Community
              

Showing results 1 to 39 of 39
Search took 0.01 seconds.
Search: Posts Made By: myraddin
Forum: Developer Forum 04-20-2010, 03:42 AM
Replies: 0
Views: 1,630
Posted By myraddin
Lightbulb full duplex VoIP is possible

Hi all.

It's true. We did it. You too can have a VoIP application made in no time.

First thanks all for your gems of knowledge (y) ! Along with official forums, this forum is my favourite bb...
Forum: Developer Forum 01-25-2010, 09:41 AM
Replies: 1
Views: 1,818
Posted By myraddin
Why don't you rather try using PCM (then you...

Why don't you rather try using PCM (then you don't need to decode AMR)

Manager.createPlayer("capture://audio?encoding=pcm");
Forum: Developer Forum 11-07-2008, 03:39 AM
Replies: 0
Views: 920
Posted By myraddin
Question How to determine if the VoiceApp (native dialer) is in the foreground

Hi all.

Actually I need to recognize when the VoiceApp goes to background.

I am implementing PhoneListener so I do have a reference to the app itself, but have currently had no success in...
Forum: Developer Forum 11-07-2008, 03:12 AM
Replies: 10
Views: 6,511
Posted By myraddin
No way :(

I have researched more and more... but with no luck.
My research has shown that there is no way to push anything on top of the incoming call :(

But there is a way to change what is written on it...
Forum: Developer Forum 10-21-2008, 07:50 AM
Replies: 0
Views: 853
Posted By myraddin
Question Screen stack

Hi all.

Is there a way to access the screen stack?

I would like my background thread to write the name of the topmost screen while moving through the various applications on the bb (address...
Forum: Developer Forum 10-14-2008, 08:01 AM
Replies: 10
Views: 6,511
Posted By myraddin
Wink Ok here it goes: First, create an app: ...

Ok here it goes:

First, create an app:

public class Test_01 extends Application implements PhoneListener
{
private Screen_01 fScreen = null;

public Test_01()
{
Forum: Developer Forum 10-14-2008, 03:13 AM
Replies: 8
Views: 3,334
Posted By myraddin
Hi. First check my account and see threads on...

Hi.
First check my account and see threads on the subject, but basically there are two options:
(a priori: implement phone listener)

1) Push a screen on top of VoiceApp. You need to mimic the...
Forum: Developer Forum 10-10-2008, 01:21 AM
Replies: 8
Views: 3,163
Posted By myraddin
System.exit(0) is a sure way to get out ;-) ...

System.exit(0) is a sure way to get out ;-)

(yes, the Application class enables a non-full screen screen, my mistake. You can also play with MainScreen instead of PopupScreen - it will...
Forum: Developer Forum 10-09-2008, 03:23 AM
Replies: 8
Views: 3,163
Posted By myraddin
Wink Certanly :)

Main class (entry point)

public class Test_01 extends UiApplication
{
static private Test_01 theApp;
private Screen_01 fScreen = null;

public Test_01()
{
fScreen =...
Forum: Developer Forum 10-09-2008, 02:42 AM
Replies: 8
Views: 3,163
Posted By myraddin
Wink Yes. you can do that. Override...

Yes. you can do that.

Override sublayout(init,int) of your screen class:

public void sublayout(int width, int height)
{
super.sublayout(width, height);
setExtent(100,...
Forum: Developer Forum 10-02-2008, 04:41 AM
Replies: 12
Views: 4,876
Posted By myraddin
Wink this thread might help you: Phone menu...

this thread might help you: Phone menu (http://tinyurl.com/3qsvu3) .
Forum: Developer Forum 10-02-2008, 04:36 AM
Replies: 8
Views: 3,334
Posted By myraddin
Smile well, I am sorry to say but the code doesn't help...

well, I am sorry to say but the code doesn't help at all.

First of all you did not define StickerManager (but I assumed it's a manager - not a screen as one would guess by the variable name)
...
Forum: Developer Forum 10-01-2008, 06:54 AM
Replies: 8
Views: 3,334
Posted By myraddin
Thumbs up I continued working and discovered a way to draw...

I continued working and discovered a way to draw on a active application.


UiApplication application = UiApplication.getUiApplication();
application.invokeLater(new Runnable(){
public...
Forum: Developer Forum 10-01-2008, 01:22 AM
Replies: 4
Views: 2,659
Posted By myraddin
Good trick. (y) So the Browser obeys that rule...

Good trick. (y)
So the Browser obeys that rule ... :razz: :smile:
Forum: Developer Forum 09-30-2008, 07:14 AM
Replies: 8
Views: 3,334
Posted By myraddin
Thanks. So can you confirm that there is no way...

Thanks.
So can you confirm that there is no way not to implement a 'pass through' screen which doesn't intercept any key input (allowing other applications to accept them) ?

Ok. If that is true,...
Forum: Developer Forum 09-30-2008, 03:32 AM
Replies: 1
Views: 26,103
Posted By myraddin
Wink And how do we use colour in code ? Can it be...

And how do we use colour in code ?
Can it be done automatically ?
Can we use [code=java] -> Edit: no we cannot :)

Edit:

I will answer myself :idea: :

use (y)"[php]" instead of...
Forum: Developer Forum 09-30-2008, 03:30 AM
Replies: 8
Views: 3,334
Posted By myraddin
Question Phone menu

Hi.

My app extends Application and implements PhoneListener.

In callAnswered() I push a popup screen that shows a picture.

I am not catching any key inputs.

Does anybody know how to...
Forum: Developer Forum 09-30-2008, 03:18 AM
Replies: 8
Views: 2,441
Posted By myraddin
One more solution that worked for me (in some...

One more solution that worked for me (in some cases):

Use File->'Erase simulator file' options in the JDE. :idea:
Forum: Developer Forum 09-30-2008, 03:14 AM
Replies: 4
Views: 2,659
Posted By myraddin
I unfortunately had similar OTA deployment...

I unfortunately had similar OTA deployment problems with the browser.
It seems that the browser doesn't check (send HEAD request to the http server) the file on the server, but instead just...
Forum: Developer Forum 09-30-2008, 03:00 AM
Replies: 10
Views: 6,511
Posted By myraddin
Could you elaborate some more on a) what you...

Could you elaborate some more on
a) what you want to do
b) what seems to be the problem

"... phone hangs when I initiate the call from the phone book screen ..." what, when?
Forum: Developer Forum 09-30-2008, 02:54 AM
Replies: 4
Views: 6,408
Posted By myraddin
Post I had similar issues..

I had similar issue with my OTA deployment.

You will have to make sure that:

1) correct mimetype set in http server (for .cod and .jad file)
2) set the .cod and .jad file in the correct...
Forum: Developer Forum 09-24-2008, 07:15 AM
Replies: 8
Views: 2,441
Posted By myraddin
That works. Thanks guys. !

That works. Thanks guys. !
Forum: Developer Forum 09-12-2008, 02:38 AM
Replies: 3
Views: 1,575
Posted By myraddin
Thumbs up Thanks, it works.

It's not documented (what a treat from simon.hain - thanks)

use:

protected void applyTheme()
{}

in your screen class, and that's it.

You'll get a blank window without borders, shades...
Forum: Developer Forum 09-11-2008, 08:48 AM
Replies: 3
Views: 1,575
Posted By myraddin
Unhappy Theme choice dictating popup window placement

I am developing a popup screen application and have found out about a 'disturbing' effect of changing themes.

As it turns out, current theme not only dictates effects such as borders, shades,...
Forum: Developer Forum 09-11-2008, 08:34 AM
Replies: 4
Views: 3,595
Posted By myraddin
Unhappy I agree.

Yes. I came to the same conclusion.

But as it turns out, current theme not only dictates effects such as borders but the position of the popup too !

I was testing the app on 8810 simulator...
Forum: Developer Forum 09-11-2008, 03:05 AM
Replies: 1
Views: 1,462
Posted By myraddin
Basically, I just need to read the contents of...

Basically, I just need to read the contents of the
ApplicationMenuItemRepository.MENUITEM_PHONE

because I need to make sure I am clicking on the right MenuItem.
Forum: Developer Forum 09-10-2008, 02:36 AM
Replies: 8
Views: 2,290
Posted By myraddin
Smile Removing border/shadow ?

I think this is the best place to continue my inquiry regarding popup screen.

After successfully creating a popup screen (with background still visible) I am wondering if it is possible to remove...
Forum: Developer Forum 09-09-2008, 08:44 AM
Replies: 2
Views: 1,425
Posted By myraddin
Could you clarify? This is how I understood...

Could you clarify?

This is how I understood your post:
If someone dials the "wrong" number, you want to intercept/truncate the call?
Forum: Developer Forum 09-09-2008, 07:30 AM
Replies: 10
Views: 5,487
Posted By myraddin
Talking Could not agree more.

I totally agree.
Forum: Developer Forum 09-09-2008, 07:26 AM
Replies: 1
Views: 1,462
Posted By myraddin
Question List Menu items

Hi.

I am building an application that intercepts calls.

One necessary feature is to access the menu (programmatically) and choose an item from it - when in call ('Notes', for instance).

But...
Forum: Developer Forum 09-09-2008, 03:32 AM
Replies: 0
Views: 719
Posted By myraddin
Post Events not being sent immediately

Hi.

Anyone have a clue on this?

I implemented PhoneListener.
on callConnected(int arg0) I inject few commands.
The trace shows that the events are not being sent immediately. :oops:
...
Forum: Developer Forum 09-09-2008, 03:15 AM
Replies: 3
Views: 1,485
Posted By myraddin
Wink Already solved

Try this:

www.blackberryforums.com/developer-forum/1489-solved-i-get-error-2-helloworld-prog.html
Forum: Developer Forum 09-08-2008, 07:02 AM
Replies: 12
Views: 4,812
Posted By myraddin
Try this

No. There is no need to set properties to 'run on startup', but in that case you will need to start the app yourself.

An example:

public class Test_01 extends Application implements...
Forum: Developer Forum 09-08-2008, 06:52 AM
Replies: 1
Views: 868
Posted By myraddin
I am using a library project myself.

I am using a library project myself.
Forum: Developer Forum 09-08-2008, 06:41 AM
Replies: 8
Views: 2,290
Posted By myraddin
Great ! It works. Many thanks

Great !
It works.

Many thanks
Forum: Developer Forum 09-08-2008, 03:58 AM
Replies: 8
Views: 2,290
Posted By myraddin
And what I need is to let the background (e.g.,...

And what I need is to let the background (e.g., main screen) to remain fully visible.
Forum: Developer Forum 09-08-2008, 03:57 AM
Replies: 8
Views: 2,290
Posted By myraddin
Ok, I am doing this but the whole screen gets...

Ok, I am doing this but the whole screen gets painted white (except, of course, the popup window)

any idea ?
Forum: Developer Forum 09-05-2008, 08:08 AM
Replies: 8
Views: 2,290
Posted By myraddin
So it is possible ? Do you have any code...

So it is possible ?
Do you have any code snippets to get me over possible difficulties more quickly ?

Thank you for the reply.
Forum: Developer Forum 09-05-2008, 07:40 AM
Replies: 8
Views: 2,290
Posted By myraddin
[solved] "Not - full screen" application possible ?

Hi.

I am trying to create an App that will not span over full display.
Is there a way to do this in BB?

Description (example):
I would like to show a text field with background intact. So the...
Showing results 1 to 39 of 39

 
Forum Jump

National Instruments Mainframe Chassis - NI-PXIe-1071 w/Warranty picture

National Instruments Mainframe Chassis - NI-PXIe-1071 w/Warranty

$650.00



Agilent E1301B Mainframe  9-slots with multimeter, totalizer, and relay muxes picture

Agilent E1301B Mainframe 9-slots with multimeter, totalizer, and relay muxes

$200.00



Integrated Circuit IC Tester LCD Digital Display Multi-functional Integrated picture

Integrated Circuit IC Tester LCD Digital Display Multi-functional Integrated

$60.09



Tektronix Mainframe TM503 With FG504 40Mhz Function Generator picture

Tektronix Mainframe TM503 With FG504 40Mhz Function Generator

$220.00



SHC SYSTEM 6 MAINFRAME + Mixed Modules 6-562,6-201,6-402. picture

SHC SYSTEM 6 MAINFRAME + Mixed Modules 6-562,6-201,6-402.

$89.99



NEWPORT 8800 PHOTONICS TEST SYSTEM MAINFRAME picture

NEWPORT 8800 PHOTONICS TEST SYSTEM MAINFRAME

$499.99







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.