Pointui » Home 2 Applets Showcase

[Applet] QuickLaunch

(118 posts)
  • Started 1 year ago by jo_keks
  • Latest reply from cerealpirate
  1. jo_keks
    Member

    hi icho1015,

    thanks for the hint. but as i said before:

    rtPath = "\\Windows\\Start Menu\\Programs\\";
    is not the same in all devices! For me it's: rtPath = "\\Windows\\Startmenü\\Programme\\"; this contains ü, and pointui can't handle it!
    So I can't build an applet based on it, the applet should work for everyone!

    Edit: You gave me a great idea! I think there could be a way...

    Posted 1 year ago #
  2. icho1015
    Member

    Good point. I did not think about other languages.

    Posted 1 year ago #
  3. jo_keks
    Member

    But youu gave me the idea that name before "Programs" or "Programme" are nearly same in lengh... so I did:
    \\Windows\\Start Menu\\Programs\\Subfolder\\Progamm.lnk
    ^ cut it somewhere here and find the next backslash.
    (It doesn't matter if I cut P|rograms or Program|s)

    Now we've got the Subfolder :-)

    Posted 1 year ago #
  4. FYI, you could read this documentation.
    I think that the token {Programs} could help you.

    @jo_keks, I've added your applet in the store.
    Thanks!

    Posted 1 year ago #
  5. icho1015
    Member

    Monte, The {Programs} token is being used, the problem is mapping to shortcuts in subfolders in the start menu. For example a game inside of the Games folder.

    Posted 1 year ago #
  6. jo_keks
    Member

    Hi Monte,

    the FileExplorerScreen returns the full (rom specific) path, so I have to handle this.

    P.S read the documentation, {Programs} works for ProcessStart...

    Posted 1 year ago #
  7. dononeil
    Member

    I can't add any programs to the quick launch that are part of my start menu... I'd prefer to have them in quick launch!

    Posted 1 year ago #
  8. jo_keks
    Member

    look at first post "no favourites", they are based in another path! You could edit the settings.xml like this: <name>\Windows\Start Menu\YourFavourite.lnk</name>

    Posted 1 year ago #
  9. Zyphr
    Member

    Very interessting apllet.

    I have also a question: Is it possible to create in this applet also subfolders or something like this. I use a X1 and also the MobileShell-Panel (but only for the "myMenu" were I can put shortcuts to PDFs and other files.
    Example: I create an quicklaunch called PDFs. When I press this Icon then a new window opens (like the Appointment-applets) and the games are listed as 1.pdf , 2.pdf,...

    Is this possible or do I have to wait until the Pro-Version is out?

    Posted 1 year ago #
  10. jo_keks
    Member

    Hi Zyphr, at the moment this it is not possible. I will test possibilities therefore in future, but I'm busy with SlideToday. I don't know if it depends on pro vervion, so pass it along to pointui team!

    Edit: I read this, so I think it should work. I will test it for future releases.

    Posted 1 year ago #
  11. Wrant
    Member

    if you 'V ALIGN HOME BUTTONS TO THE BOTTOM' on VGA you can put another line of 5 in

    Posted 1 year ago #
  12. jo_keks
    Member

    ...and with new version of pointui much more :-) it could be full size!
    so to add more shortcut:

    just edit your settings xml and add more nedes like:
    ...<app15><name></name><pos>15</pos></app15><app16><name></name><pos>16</pos></app16>...

    ...see first post

    Posted 1 year ago #
  13. hovie
    Member

    Would it be interesting if I posted here my version of your quicklaunch? :P

    I put 4 app by row and am searchin right now how to put bigger icons (I'm so proud cause it's the first time ever I modify a code to fit my needs XD)

    Jo_keks I just have a single problem, the + to add applications aren't centered with icons maybe if I show you the code you can tell me

    if (a != "")
    {
    Appbtn btn;
    tbl.GetValue("pos",helper);
    helper -= 1;
    Controls.Add(btn);

    btn.Set(x,y,Device.AutoScaleValue(20),Device.AutoScaleValue(20),a);
    btn.AddHelper(helper);
    btn.removed = Reload;
    if (x <= Device.AutoScaleValue(180))
    {
    x += Device.AutoScaleValue(64);
    }
    else
    {
    x = Device.AutoScaleValue(15);
    y += Device.AutoScaleValue(60);
    }
    }
    else
    {
    Applbl lbl;

    tbl.GetValue("pos",helper);
    helper -= 1;
    Controls.Add(lbl);
    lbl.Set(x,y,Device.AutoScaleValue(40),Device.AutoScaleValue(40));
    lbl.AddHelper(helper);
    lbl.ReloadNeeded = Reload;
    if (x <= Device.AutoScaleValue(180))
    {
    x += Device.AutoScaleValue(45);
    }
    else
    {
    x = Device.AutoScaleValue(15);
    y += Device.AutoScaleValue(45);
    }
    }
    }
    }

    I modifyied values so that I add 4 icons per line, I prefer it that way (nicer IMO)

    Posted 1 year ago #
  14. jo_keks
    Member

    btn.Set(x,y,Device.AutoScaleValue(20),Device.AutoScaleValue(20),a);

    "+" is aligned "Center","Center", you give the buttons space "AutoScaleValue(20)", icons are 36 (the size is given from windows! and can not be changed), to realy change the positions you need to set: x and y

    if (x <= Device.AutoScaleValue(180)) //End of line
    {
    x += Device.AutoScaleValue(45); //next icon x
    }
    else
    {
    x = Device.AutoScaleValue(15); //new line
    y += Device.AutoScaleValue(45);
    }

    imagine a square where x and y is top/left, "Device.AutoScaleValue(20)" is width and height, so because an icon is 36 you should take at least "Device.AutoScaleValue(36)"

    maybe this helps

    Posted 1 year ago #
  15. hovie
    Member

    Oh I see, I thought that was making the icons higher or lower, didn't know it was icon size, maybe that's the problem, gonna take a look!

    Thanks!

    Posted 1 year ago #
  16. Scaramouche
    Member

    Hi!

    Great applet.

    But I need some help as it is not working properly on my SE XPERIA (WVGA).

    I have installed the latest PointUI (2.0.30b) and when using the settings for 25 or 30 apps I get the following screen.

    Thanks for your help.

    Cheers,
    Scaramouche

    Attachments

    1. QuickLaunch_with_30_apps.png (43.5 KB, 5 downloads) 1 year old
    Posted 1 year ago #
  17. jo_keks
    Member

    Oh, thanks for reporting! There was a little fault in the settings.xml! Please download new versions. (are uploaded atm)

    regards

    Posted 1 year ago #
  18. Jeanne8fr
    Member

    Ho do you remove the search bar?. I can only have 25 programs at the moment

    Thanks,

    Jeannette

    Posted 1 year ago #
  19. Jeanne8fr
    Member

    Solved. Just ignore me. I used the search here which I should have done before posting the question..

    J

    Posted 1 year ago #
  20. jo_keks
    Member

    Now we've got a release working Landscape!

    I can only test on WQVGA-Device, so please report bugs...

    Posted 1 year ago #
  21. jammar1973
    Member

    Nice program can you add face contacts or make one for face contact thank you

    Posted 1 year ago #
  22. roufs
    Member

    i second jammar! a quick launch application for contacts would be great!!!

    Posted 1 year ago #
  23. jo_keks
    Member

    You just need to add the right application... or do i missunderstand?

    Posted 1 year ago #
  24. Is it possible we can add setting menu shortcuts like "today", "buttons", "storage manager" and so on? It will be great if we can do that...

    Posted 1 year ago #
  25. MarkRain
    Member

    to jammar: FaceContact is a today plugin, i think it cannot "be launched" with a button

    Posted 1 year ago #
  26. tribaleps
    Member

    Thanks jo_keks for the wonderful app..unfortunately, i still can't seem to get it to show 30 applications on my xperia.

    A general inquiry however, is there a way to hack the 'my applications' tab to show more shortcuts instead?

    Posted 1 year ago #
  27. jo_keks
    Member

    sorry for the late reply, was busy...

    i added a new release wich should work for all devices now.

    in fact you can add all link files, so with if you're familiar with windows mobile (or got some tools) it should be possible to create linkfiles to settings menu

    Posted 1 year ago #
  28. michaelp
    Member

    Excellent work again jo_keks! Well done.

    Posted 1 year ago #
  29. Niewidoczny
    Member

    I have the same issue as tribaleps on my Xperia. It shows less than 30 applications, the other one become visible when scrolling to the next applet (on the right).

    Posted 1 year ago #
  30. jo_keks
    Member

    To be honest, at the moment I don't know exactly why it doesn't work on some devices.
    Strages tested for me uncountable versions but we can't find a solution.

    I'll attache the latest version, there is nothing in the code why it should not work - please report.
    Maybe an other dev could take a look at it and give me a hint...

    Attachments

    1. QuickLaunch.zip (1.6 KB, 162 downloads) 1 year old
    Posted 1 year ago #

RSS feed for this topic

Reply »

You must log in to post.