window behavior stretching cell phone

Post new features wanted for Builder or Designer here
Post Reply
cgetty
Posts: 15
Joined: Tue Feb 06, 2024 7:17 pm

window behavior stretching cell phone

Post by cgetty »

I started using UI builder and enjoyed it very much and I still use it from time to time.

old version of UI bulder
http://vb3builder.atwebpages.com/vb3/
I converted a older program to CrossUI.

old version
http://mobile1.onlinewebshop.net/cat1/

Notice how it's easier to stretch and navigate the screen.

new version using CrossUI
http://vb4.xp3.biz/cathy/

Was the ability to stretch and navigate the screen lost with the upgrade to CrossUI?

These examples should be viewed using a cell phone.

Or is there just a setting that I should set that I overlooked?

Thanks Clark.
Last edited by cgetty on Sat Jun 15, 2024 4:08 am, edited 2 times in total.
linb
Site Admin
Posts: 8
Joined: Thu Jan 25, 2024 4:40 pm

Re: window behavior stretching cell phone

Post by linb »

I noticed that you have 5 tabs, but hide all tabs except the first one, and you set "value" to 5th(hidden).

Code: Select all

               .setItems([
                    {
                        "id" : "a",
                        "caption" : "Wanker Bell",
                        "imageClass" : "xui-icon-xui",
                        "closeBtn" : false
                    },
                    {
                        "id" : "b",
                        "caption" : "Hosted Sites",
                        "closeBtn" : false,
                        // HIDDEN
                        "hidden" : true
                    },
                    {
                        "id" : "c",
                        "caption" : "Play",
                        "closeBtn" : false,
                        // HIDDEN
                        "hidden" : true
                    },
                    {
                        "id" : "d",
                        "caption" : "Apps",
                        "closeBtn" : false,
                        "optBtn" : true,
                        "popBtn" : true,
                        // HIDDEN
                        "hidden" : true
                    },
                    {
                        "id" : "e",
                        "caption" : "Opening Tab",
                        "closeBtn" : false,
                        // HIDDEN
                        "hidden" : true
                    }
                ])
                .setLeft("0em")
                .setTop("0em")
                .setVisibility("visible")
                // select the 5th
                .setValue("e")
cgetty
Posts: 15
Joined: Tue Feb 06, 2024 7:17 pm

Re: window behavior stretching cell phone

Post by cgetty »

Yes the observation that you made regarding my interface it was just having fun trying to get familiar with the IDE trying to learn how things work there is no necessary rhyme or reason to any of it.

Although many of us may be viewed as "Civilian Developers" we often fly by the seat of our pants. We will sometimes do some really wacky things with CrossUI that many who are formally taught would never do. Some times you may have a hearty laugh when you see how we do things.

But can you answer my question regarding the old version that you did in 2009 I was able to easily stretch windows and shrink windows on a cell phone and I found that very convenient

How can I stretch and shrink a window by pinching the screen on a cell phone. I just found that very convenient that's all.
Last edited by cgetty on Sun Jul 21, 2024 8:44 pm, edited 1 time in total.
cgetty
Posts: 15
Joined: Tue Feb 06, 2024 7:17 pm

Re: window behavior stretching cell phone

Post by cgetty »

Just some observations. About 1/2 the apps that I make I still am using UI builder ver 3. I seems to work very well. Most of the small glitches that I experience are memorized and I have a work around. The reason is because all the people that want to view my apps want to do it from their cell phones.

I thought about trying to develop using some kind of frame work (for android) to do that. But I'm getting too old to start learning a new frame work. I want to leverage the knowledge I've worked so HARD to get so far. I love CrossUi and many of the new features.

Ok I just had to get that off my chest.

Clark
Post Reply