Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ui.TextView not displaying text in Mobile Safari #14

Closed
blamarque opened this issue Feb 19, 2013 · 3 comments
Closed

ui.TextView not displaying text in Mobile Safari #14

blamarque opened this issue Feb 19, 2013 · 3 comments
Assignees
Labels

Comments

@blamarque
Copy link

Hello,

It seems TextView does not display any text while rendering in Mobile Safari.
It renders fine in other mode.

import animate;
import ui.StackView as StackView;
import src.GameScreen as GameScreen;
import ui.View as View;
import ui.ImageView as ImageView;
import ui.TextView;

exports = Class(GC.Application, function () {

    this.initUI = function () {

        var rootView = new StackView({
            superview: this,
            x: 0 ,
            y: 0,
            width: device.width ,
            height: device.height,
            clip: true,
            backgroundColor: '#000000'
        });

 this.timerText = new ui.TextView({

        x: 0,
        y: 0,
        width: 400,
        height: 666,
        text: "countdown_secs",
        size: 24,
        shadowColor: '#FFFFFF',
        color: '#FFFFFF'
      });

           rootView.push(this.timerText);

    };

    this.launchUI = function () {};
});

Thanks for any help in advance,

Best

@mikehenrty
Copy link
Contributor

Yup, that's a bug. Thanks for the report.

@mikehenrty
Copy link
Contributor

This is fixed upstream.

jaredpetker pushed a commit that referenced this issue Mar 1, 2013
@ghost ghost assigned mikehenrty Mar 1, 2013
@mikehenrty
Copy link
Contributor

Fixed in the latest release.

jaredpetker pushed a commit that referenced this issue Sep 13, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants