Search results

  1. Cableguy

    B4J Question [ [B4X] BCTextEngine / BBCodeView - Text engine + BBCode parser + Rich Text View ] Is it possible to add collapsible text, like the Spoiller feature i

    Hi guys, I know, Iknow, the title is waaaaay tooooo loooong, but it needed to be! So, my question is in the title... Is it possible to create collapsible text, like the feature of this forum, or similar, like the subs in our IDEs
  2. Cableguy

    [WishList] Activity designer Device based

    The ability to design Activities and add views to it, without the Bridge, nor the Designer, using the device as a stand alone activity designer, would help create them faster, and more device acurate.
  3. Cableguy

    Render an activity view semi-transparent

    Is there any way of acomplish this? Render an activity semi-transparent, in order to have a seethough efect... I was hoping to achieve this on the top most level, the main activity..
  4. Cableguy

    v1.50 beta - Lost comunication with my device and the emulator

    I've just installed v1.50 beta, and noticed that now I cannot connect the designer with either the device or the emulator. Also, when compiling is done, it fails to instal the apk to the device or the emulator. Here is the code generated by the Installer when compiling: Compiling code...
  5. Cableguy

    Dinamically add a view

    Imagine I have a variable 'n', and I want to use it to add 'n' views of a particular type... how can I do it? Like: For x = 1 to n Dim "EditText" & x As EditText Next Spendt the last hour searching the forum, but nothing similar...
  6. Cableguy

    Assign SQL Blob to an Image view

    How do I assignd the contents of a SQL Blob to an Imageview?
  7. Cableguy

    Spinner does NOT get populated

    I have this code: Spinner1.Initialize("Categories") SQL1.Initialize(File.DirInternal,"Equations.s3db",False) Cursor1 = SQL1.ExecQuery("SELECT Name FROM Categories") Dim Item As String Spinner1.Add("Paulo") For i = 0 To cursor1.RowCount - 1 Cursor1.Position = i...
  8. Cableguy

    Pairs4Android Bug

    Hi...I have persistent bug that keeps on...bugging me!!! In whatever level, since some of the subs are similar, if not equal, I coded the buttons to be invisible after button click, so they wouldn't be able to fire the sub again, forcing the player to choose another Button... It happens that...
  9. Cableguy

    Icon Transparency

    Hi EREL... I have an issue, not sure if it is a bug, so i post it here... I have assigned an icon file to my app... In order to have transparency, I used the png format, borowing the original B4A icon as a template... Well, my file shows the transparency correctly under windows, but not in...
  10. Cableguy

    Registering to the Android Market...How?

    Hi guys.. I'm taking some more few steps to start sharing my apps through the Market, but registering has proven to be an odissey for someone like me, that DO NOT own a Credit Card... I've tried to find a way to e-mail the Google Checkout servoce, but I cannot find a way to do it.. Has anyone...
  11. Cableguy

    Share My Creation Pairs4Android

    Hi...I am almost finished with my conversion to Android of my Pairs game... I've given it a new graphical interface, and added some simple animations... Also a Score table was added... I am posting here the apk, with just the easy level enabled, in order to get some feedback and bug detecting...
  12. Cableguy

    Activities

    I'm polishing some features in my Pairs4Android Game...and came across an odd behabiour... My first activity is a selection screen, wich will take the user to de level of choice...Once completed, I finish the activity using Activity.Finish and start the last activity, wich is a Scoretable..When...
  13. Cableguy

    Sorting an Array

    HI all...It's me again :sign0188: I am strugling to get my mind around a concept on how to sort an array... Since B4A still hasn't 2D arrays, I used a continuous one... So for sake of argument, lets use this example: Score(4) = 23 Score(9) = 25 Score(14) = 21 Score(19) = 30 Score(24)...
  14. Cableguy

    Array Issue....Help...

    Working with arrays in B4Ppc was quite straight-foward, but not so easy in B4A... I have This code: Dim Table As String Table = File.ReadString(File.DirInternal,"ScoreTable.txt") Dim Scores() As String c = Table.IndexOf(Level) Msgbox(table,c) For i = 0 To 24...
  15. Cableguy

    A request and a question

    Not sure if this a correct description and/or place to do it in, but here it goes.... Is there any plan to access the SIM few meaningfull services, such as PIN, SIM contacts, sms, etc...? Another thing, How can one determine the radio mode, and turn on/of radio services? Thanks...
  16. Cableguy

    Am I missing something? Where's the ComboBox??

    Just Noticed that there seems we have NO combobox in Android? Why?, Any workaround without creating a extra activity?
  17. Cableguy

    EditText

    I have an EditText...single line...How can I scroll text being inputed when the lenght of the text is greater than the width if the view, keeping the last inputed characters visible?
  18. Cableguy

    Ho-Ho-Ho...Merry Christmass Everyone!!!

    It's again that tme of the year, when we all trend to make a balance of what the year has brought us... My Year promisses to end much better than what it started to be...I can only hope that all of you share that feeling... May all of you spend the Christmas night with whom you need, love, and...
  19. Cableguy

    Forum Bug?

    Hi EREL, I've been noticing a strange behaviour that until the new Android re-styling of the forum, did not occour.. I have been prompt to re-enter my username and passeord everytime I start a new session on the forum, and even upon re-entrering those, I get logged in, but have to manuakky...
  20. Cableguy

    Can't jump to sub...

    I added a sub, but did it completly manually, no tab,or auto-complete... The sub works fine, it get's registered by the IDE, but if I click on it, list side, it tells me it cannot be found!
Top