- This topic has 12 replies, 3 voices, and was last updated 11 years, 9 months ago by
BryanBudelon.
-
AuthorPosts
-
BryanBudelonMemberHi.
I tried to use the gotoPage, but no results.Code:
phoneui.gotoScreen (‘# m1-Radio’, ‘NONE’);
Note: I’m using the “Run Javascript”, and the name “Radio” is the name of app.mobi.Whats problem?
Thanks for attention.
September 17, 2013 at 2:24 pm #342484
BrandonMemberIf you copy and pasted it could be that you have a space in between the # and m1
phoneui.gotoScreen (‘# m1-Radio’, ‘NONE’);
should be
phoneui.gotoScreen (‘#m1-Radio’, ‘NONE’);September 18, 2013 at 12:00 pm #342500
BryanBudelonMember@CincyPlanet wrote:
If you copy and pasted it could be that you have a space in between the # and m1
phoneui.gotoScreen (‘# m1-Radio’, ‘NONE’);
should be
phoneui.gotoScreen (‘#m1-Radio’, ‘NONE’);No. The space appeared only at the time of posting.
September 18, 2013 at 1:22 pm #342504
support-octavioMemberHi BryanBudelon,
Is your Radio screen linked to the main screen or any other screen that is linked to main screen? Or is it added as additional project file? If no, please do it. See last part of section #2 to learn more about it: http://www.genuitec.com/mobile/docs/projectOrg/projectOrg.html#organizing_new_project
September 19, 2013 at 9:13 am #342544
BryanBudelonMember@support-octavio wrote:
Hi BryanBudelon,
Is your Radio screen linked to the main screen or any other screen that is linked to main screen? Or is it added as additional project file? If no, please do it. See last part of section #2 to learn more about it: http://www.genuitec.com/mobile/docs/projectOrg/projectOrg.html#organizing_new_project
The problem was lack of “Additional Project Files”.
But it is closing the MobiOne in testing, whats the problem ?Another question: how make builds with many projects integrated?
September 19, 2013 at 11:53 am #342555
support-octavioMemberHi BryanBudelon,
Can you describe how Mobione is closed when you are testing? What Mobione version do you use? If 2.5, are you using Test Center or Web SIM?
>Another question: how make builds with many projects integrated?
Also, can you share more details to understand better your question?September 19, 2013 at 2:09 pm #342559
BryanBudelonMember@support-octavio wrote:
Hi BryanBudelon,
Can you describe how Mobione is closed when you are testing? What Mobione version do you use? If 2.5, are you using Test Center or Web SIM?
-> I’m with two projects, where use gotoPage for calling other project. When use the function gotoPage, sometimes the MobiOne closes in moment of call.
Also, can you share more details to understand better your question?
How said, i use functions for calling other project.mobi, in this moment is happens the closing of the MobiOne.
Forgive me for the bad english, I’m Brazilian. And my level of the english is low.
September 19, 2013 at 2:47 pm #342560
support-octavioMemberWhen you say project, do you mean a screen (.mobi file)?
Can you share a simple set of files to replicate the issue?
What is your mobione version?September 23, 2013 at 10:49 am #342655
BryanBudelonMember@support-octavio wrote:
When you say project, do you mean a screen (.mobi file)?
Can you share a simple set of files to replicate the issue?
What is your mobione version?– Yes, i mean screen(.mobi file).
– This moment, use two screens(.mobi). One principal, other that is called within of the principal.
– I use the version 2.3.2(hot-fix 1).
September 24, 2013 at 1:29 pm #342692
support-octavioMemberHi BryanBudelon,
Please share a sample project in order to replicate the problem in our side. If you want to keep data in privacy send it to support at genuitec dot com, use title mobione data from BryanBudelon
September 24, 2013 at 2:00 pm #342693
BryanBudelonMember@support-octavio wrote:
Hi BryanBudelon,
Please share a sample project in order to replicate the problem in our side. If you want to keep data in privacy send it to support at genuitec dot com, use title mobione data from BryanBudelon
Sorry, but no got it how do contacting support of mode private.
Thank you for attention.
September 26, 2013 at 2:45 pm #342743
support-octavioMemberHi,
I have not received your project yet. If you are unable to send it, you can also attach it to this thread. Just remove any image or text widget that you don’t want to share. The thing here is to replicate the problem that you are having with the gotoPage function.
September 30, 2013 at 10:35 am #342836
BryanBudelonMember@support-octavio wrote:
Hi,
I have not received your project yet. If you are unable to send it, you can also attach it to this thread. Just remove any image or text widget that you don’t want to share. The thing here is to replicate the problem that you are having with the gotoPage function.
That problem i ended up leaving aside. But i’m with other problem.
There two “buttons”, on true are two images. When clicked, change. When clicked again, back to image initial. However, i’m no having result.Code:
if($(this).attr("src") == "images/play.png"){ $(this).attr("src","images/pause.png"); }else{ $(this).attr("src","images/play.png"); }
-
AuthorPosts