Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - msx

#1
Enjoy this holiday.  :booze:
#2
Take the time you want. Do not worry. We thank you for your effort.


Enviado desde mi iPhone utilizando Tapatalk
#3
I try to translate my application to the Russian language and being a different alphabet I am not able to write on screen what I want. The location of the characters in the font.png generated by GLB does not match. I have tried with many TrueType fonts and none works. Does anyone know how to do this?
#4
IDE/Syntax / ...
2017-Mar-21
...
#5
Solved. It consists of converting texts from Cyrillic to Latin.

I have used this web: http://translit.cc/
#6
I would like to publish my app in Russian but I do not know how to write texts with Cyrillic characters in the current IDE. Is there any way or can I forget it?
#7
great news!!
#8
All this happens because it is a forum with success  :D
#9
You can implement activation by email.
#10
I think I do everything according to the information you give me but it shows nothing. I am currently using GLB v14 and latest AE version.
#11
I am trying add Admob to my Android App but do not find some info about how get it. I think that Admob has not support of Spacefractal in a while. Is it possible to implement Admob now?.

I have tried several examples of the forum but they are old and do not work, at least to me.
#12
It can be deleted by doing a query from PHP-MyAdmin but I do not know how to structure the SMF forum and could be worse the remedy than the disease.

An antispam MOD like this could be installed https://www.stopforumspam.com/mods#link_smf
#13
That's great!!
#14
Thanks spacefractal.

P.D.: SOCK works perfectly on Android.
#15
I found this.

Code (glbasic) Select
- (void)applicationDidEnterBackground:(UIApplication *)application
{
    UIApplication *app = [UIApplication sharedApplication];

    //create new uiBackgroundTask
    __block UIBackgroundTaskIdentifier bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
        [app endBackgroundTask:bgTask];
        bgTask = UIBackgroundTaskInvalid;
    }];

    //and create new timer with async call:
    dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
        //run function methodRunAfterBackground
        NSTimer* t = [NSTimer scheduledTimerWithTimeInterval:10 target:self selector:@selector(methodRunAfterBackground) userInfo:nil repeats:NO];
        [[NSRunLoop currentRunLoop] addTimer:t forMode:NSDefaultRunLoopMode];
        [[NSRunLoop currentRunLoop] run];
    });
}


Is it possible to call GLB_ON_LOOP inside dispatch_async?