Can someone please help me out im not to good with coding etc, but have tried to no luck im trying to change
Bookmarks - to - Contacts
Title Bar - to display Running app's
iv tried this
class ScreenHome_CustomHandlers
{
bool ScreenHome_AfterLoad(ScreenHome screen)
{
//change the right soft key
screen.SetSoftKeys("Menu", Terms.Get("Menu"), "Contacts", Terms.Get("Contacts"));
screen.title.SetVisible(false);
return false;
}
bool SoftKeyButtonClick(ScreenHome screen, String buttonID)
{
//what do we want to do on the right soft key?
if (buttonID == "Contacts")
{
//show the contacts screen
ScreenContacts contacts;
FlowStack.Branch(contacts);
}
return false;
}
from the first page on this thread the contacts display nicely when hitting the right soft key, But now iv got no title bar.
when ever i try to use the pointui custom genareter every thing works apart from getting the contacts to display after i push the right soft key (nothing happends) every other application seems to shoe tho
So could someone please post a custom.CS file which could do this please,
EDIT:
After 20 or odd so attempts i managed to create a .cs file that works the way i want it, and in doing so learnt a little lol
