Re: Add Missing Z-ordering Functions
Posted: Tue Jul 23, 2013 6:21 pm
The ability to edit the script editor was a bug that was fixed in 6.1. Are you using the latest version?
Questions and answers about the LiveCode platform.
https://forums.livecode.com/
I've added a reference to this discussion to the feature request submitted for this in the issues database:ThatOneGuy wrote:I'm still waiting on this very important, yet missing, feature. It only requires a call to the windows setwindowpos function (or its mac or linux equivalent) that is currently unreachable within livecode, but is available in almost every other programming language.
What do you mean by "app bar"? Do you mean Ribbon, or something else?As well as this, the ability to create an app bar in windows should also not require an external. It would be incredibly simple to add this function since the Microsoft website explains in great detail how to do it and even has c++, c#, and vb sample code that does it for you. All that needs to be done is to modify that code slightly, compile it, and add it as a window mode. Why is that taking so long to happen?!
I though you felt addressing those APIs from C++ was easy, no?Though I do have some experience with c++, I do not have the capability to create any externals
Perhaps you've missed the release notes that are included with every build. You can review them here:It's been years since there's been any real changes to window functionality. When will we finally see something new in this IDE?
Up to that last line I was trying to be patient in replying to your post. There's no need for such an unprofessional tone; insults are unlikely to deliver whatever productive outcome you may imagine them to.This lack of new material is borderline laziness and is, in my humble opinion, inexcusable. It is about time for a major update if you ask me.
That would be very cool. You'll see a fella here in the forums named Monte - he's a good resource for any questions you may have about the externals API.ThatOneGuy wrote:My statement that I cannot create externals was not that I do not understand the code required, but that I do not have the proper software installed to handle the needed code (I usually handle c++ using g++ on my linux machine) and that the current external creation process is confusing (in my experience) and files created thereby typically don't function as desired. I will try yet again to see if there is any possibility of making it work as an external. If it works, then I'm definitely posting it on here for anyone to use.
Thanks. That's Win8-specific, yes? I was able to turn up this document about, and I'm sure there are others:Also, an App Bar is a windows-specific window mode in which a window can be "docked" to an edge of the screen after its rect is established. It effectively modifies the available working space of the screen, acting much like a taskbar or menubar so that windows and icons will be adjusted so as to not cover that space. There is a detailed walkthrough and sample code on the microsoft website explaining how it can be done.
Code: Select all
local cmd
put "start /B" && quote & quote && quote & "zForce.exe" & quote && the windowid of this stack into cmd
set the hideconsolewindows to true
put shell (cmd)