Questions tagged [blackberry-eclipse-plugin]

BlackBerry Java Plug-in for Eclipse

The BlackBerry Java Plug-in for Eclipse is an Eclipse plug-in that improves productivity by providing an integrated BlackBerry smartphone specific development, debugging and simulation workflow.

More information here

512 questions
2
votes
0 answers

What version of BlackBerry OS can I target with WebWorks SDK 2.0

It looks like I can't install WebWorks SDK 2.1 in Eclipse without having to build everything manually...screw that. I need to build my app for BB SDK 6, but I keep getting build errors on 6.0 API calls. I've set my default JRE to BB 6, but I seem to…
SomethingOn
  • 9,813
  • 17
  • 68
  • 107
2
votes
1 answer

"No BlackBerry JRE is installed" while creating new Blackberry project with Eclipse JDE Plugin 1.3 !

I downloaded Eclipse Helios "BlackBerry JDE PluginFull 1.3". I installed it, and installation process terminated successfully. But Whenever I try to create a new BB project, i got the following message: No BlackBerry JRE is installed.…
2
votes
2 answers

Class not found exception after adding a new image to the resource folder

The app works perfectly fine on the simulator and on the device. After adding a new set of images, it started to show on every run, on the simulator and on the device, a class not found exception. When trying to delete some images to find the cause,…
carlos
  • 2,624
  • 4
  • 26
  • 36
2
votes
1 answer

blackberry signed keys not working after mylaptop restart

i am getting signed keys to my mail. i got 3 csi files and fallow the steps to install these keys which are give in main. eveything is fine but after restarting my pc i can't able to sign project. it again ask signed keys,i am trying to reinstall…
2
votes
3 answers

Uninstall BlackBerry app installed via Eclipse

I imported the PaneManagerDemo sample project in my BB Eclipse workspace, and right-clicked on the project > Load Project(s) on Device. I get a Pane Manager Demo icon on my home screen - OK. It doesn't run, because I'm using a Curve 8330 (OS…
RMorrisey
  • 7,637
  • 9
  • 53
  • 71
2
votes
1 answer

BlackBerry App World Distribution of .jad files

I am developing an app using Eclipse Plugin with BlackBerry JRE 4.5 to support devices with OS versions 4.5 and higher. I understand that when you use a JRE version lower than 4.7 and you deploy the app to a 4.7 device or a 5.0 device, the app will…
2
votes
2 answers

Dynamically resize background image according to different screen size

I displays a splash Screen when my app loads,There is a background image in the splash screen,I problem is how can I make fit this image in all types of blackberry models?
2
votes
2 answers

Blackberry Screen Transitions on close

Hey everyone, I'm doing a Blackberry App compatible with OS4.5+ and I'd like to do some screen transitions. I know how to do them through the screen's sublayout method when I push a screen to the UiApplication, but when I wan't to make one disappear…
Olsi
  • 929
  • 2
  • 12
  • 26
2
votes
5 answers

Subfolder in res folder not finding image

I'm attempting to load a bitmap image from an images folder from within the res folder using - Bitmap.getBitmapResource("/images/bg_general.png") But the image is not being found even though it exists at specified path. Im using blackberry eclipse…
blue-sky
  • 51,962
  • 152
  • 427
  • 752
2
votes
1 answer

blackberry google map java code

how i add google map to my application. when i click a button, then it open the google map. how it can be done ? give detailed explanation. iam a fresher to blackberry programming.
prakash
  • 58,901
  • 25
  • 93
  • 115
2
votes
2 answers

Blackberry - how do you specify argument(s) to application main method without using JDE or Eclipse plugin?

I am building my application .cod file without using Blackberry JDE or Eclipse plugin. Everything works fine in the simulator if I hardcode the String arguments which my main() method needs. (I am using Maven to build.) How do you specify main…
2
votes
1 answer

Blackberry extrenal library problem (module not found)

I am using eclipse. When I add an external jar (import it.sauronsoftware.ftp4j.*;) it seems to be ok, I reference the external jar by right clicking project and the properties. When I instantiate an FTPclient opbject and run in the simulator I get…
brux
  • 3,197
  • 10
  • 44
  • 78
2
votes
2 answers

Designing a slot machine in blackberry

I am a Blackberry java developer. I am trying to develop a simple slot machine logic. I am new to animated graphics etc in blackberry. So, can anyone tell me how to design a simple slot machine where on pressing a button the images in 3 blocks must…
Rahul Kalidindi
  • 4,666
  • 14
  • 56
  • 92
2
votes
1 answer

displaying images that are retrieved from json url

I have a json url like such... [{"Image":"http://xyz.com/abc.png", "Title":"Sample"},{"Image":"http://xyz.com/def.png", "Title":"Sample2"} ] What i want to achieve is to get the image from json url and display it into a list. Beside it there must…
Rahul Kalidindi
  • 4,666
  • 14
  • 56
  • 92
2
votes
2 answers

removing the default blue color on focus

I have a created a custom Button field , when the button is on focus default blue background is coming , i want to remove that blue background . actually i am placing image on button and on image there are certain area which is transparent . when…