Tagged Questions
The postmessage tag has no wiki summary.
10
votes
1answer
2k views
Javascript Errors: “No relay set”, only in IE 7, 8
My javascript won't load because of errors it receives, only in IE. I used debugger to get the following errors. This page renders the javascript correctly in Safari, FF and chrome but not in IE and ...
8
votes
1answer
217 views
PostMessage() succeeds but my message processing code never receives the message
In my C++ application's GUI object I have the following in the main window procedure:
case WM_SIZE:
{
OutputDebugString(L"WM_SIZE received.\n");
RECT rect = {0};
...
6
votes
2answers
176 views
Why isn't my TFrame “seeing” a posted message?
I just recently begun using TFrames heavily (OK, yes, I've been living under a rock...). I thought frames supported Message hander method declaration--and I've seen many examples of that. So why does ...
5
votes
3answers
619 views
Why can't my chrome extension use HTML5 postMessage to communicate with a frame I inject?
So, I have a page on DomainA, and, using a Chrome extension, I'm injecting some javascript that inserts iframe that points to DomainB.
$("body").append("<iframe id='someFrame' ...
5
votes
3answers
3k views
How to send a string via PostMessage?
Inside my app, I want to send a message to a dialog from a different thread.
I want to pass an std::exception derived class reference to the dialog.
Something like this:
try {
//do stuff
}
...
4
votes
1answer
1k views
Cross-domain REST proxy with Javascript, HTML5
I'm writing a service (say, service.com) that provides a REST API to external apps running inside of IFrames. (These apps are hosted from domains outside the service.com).
I'm planning a javascript ...
3
votes
4answers
380 views
SendMessage vs PostMessage + WaitForSingleObject
I was wondering what's the difference between calling SendMessage (which blocks) and calling PostMessage in conjunction with WaitForSingleObject.
Thoughts?
3
votes
1answer
638 views
javascript postMessage not working
I don't know what to do. I tried several sample codes from different sources, I tried them in different browsers (from Chrome 9 to FF 4), and still nothing seems to be working with the "postMessage" ...
3
votes
2answers
381 views
PeekMessage not getting the message?
I've created a custom message type for use in resizing my Window, called WM_NEED_RESIZE. I've defined it in my .h file, and initialized in my .cpp file. I have also registered my WindowProc function ...
3
votes
1answer
304 views
Execute code in the context of the main thread (Lazarus)
I have to execute some code in the context of the main thread. I am using Lazarus + FPC. I receive an event from a thread inside a DLL (shared library if on linux) and my callback function gets ...
2
votes
2answers
40 views
HTML5 way of invoking parent JavaScript function from iFrame — besides using postMessage? Or solution for PhoneGap apps?
We're aware of cross-domain limitations imposed on inter-window communication and the introduction of postMessage in HTML5.
However, we're wondering if there are other ways an iFrame could invoke ...
2
votes
2answers
133 views
Does window.postMessage guarantee the order of events?
window.onmessage = ...
window.postMessage('1', '*');
window.postMessage('2', '*');
Does postMessage (http://www.whatwg.org/specs/web-apps/current-work/multipage/webappapis.html#queue-a-task) ...
2
votes
1answer
271 views
What could cause mouse clicks sent by PostMessage to be ignored?
I was looking for a way to send mouse clicks to a background application on Windows (ie. by handle), The test window I used to confirm my code was working accepts and processes the clicks, but my ...
2
votes
1answer
217 views
How do I implement postMessage() in JavaScript?
I need help with the window.postMessage method. I'm trying to post a message to an iframe from the parent window.
The iframe's name and ID is myFrame, and I have tried the following code, with no ...
2
votes
1answer
1k views
Jquery postmessage inconsistency
I'm trying to use Ben Almans jquery postmessage to resize an iFrame. I'm more or less using his example with different servers and dynamic content.
I've posted a question to that site as well, but it ...
2
votes
2answers
1k views
How can I do cross-domain postMessage?
The documentation for postMessage implies that cross-domain messaging is possible. However:
// When the popup has fully loaded, if not blocked by a popup blocker
That isn't a very clear note of how ...
2
votes
1answer
451 views
Any good debugger for HTML5 Javascript postMessage API?
Is there any good tool out there that allows developers to correctly debug messages sent between windows with postMessage?
Or maybe a plugin for Firebug?
Thanks!
2
votes
3answers
869 views
PostMessage does not seem to be working
I am trying to use PostMessage to send a tab key.
Here is my code:
// This class allows us to send a tab key when the the enter key
// is pressed for the mooseworks mask control.
public class ...
2
votes
5answers
7k views
I can't understand how to use SendMessage or PostMessage calls :(
I need to simulate a keypress in a third party application. Let's say I have a C# application that needs to send an "8" to the Calculator application. I can't use the SendKeys of .Net or the ...
1
vote
0answers
48 views
How to get hWnd of Edit Box when there are more than one?
I have a program that is not mine that has 3 TEdit boxes and 3 TButton objects. I can easily get the button handles by using:
IntPtr buttonhwnd = FindWindowEx(mainhwnd, IntPtr.Zero, "TButton", ...
1
vote
2answers
72 views
Which WM_Message to use?
I am working on a client loader for a game not made by me. I've built a library of mouse and key events to send to the client and they work for the most part. However, there is one bit I cannot seem ...
1
vote
1answer
62 views
PostMessage with multiple functions or custom callbacks
So far I've only seen tutorials for postmessage where one window sends a single kind of message, and the other window interprets the message in only a single way.
What if I want to have many ...
1
vote
0answers
101 views
Hide ComboBox Button Delphi without setting Style to csSimple
I am trying to hide the dropdown button in a third party component that derives from TComboBox.
I tried setting the style to csSimple, but this solution does not work for me... There is code in the ...
1
vote
2answers
142 views
Get key pressed from other application C#
I would like to get the key pressed by user on other application. For example, in notepad, not the program itself. Here is my coding that using PostMessage method to continuously send key to notepad ...
1
vote
1answer
105 views
HTML5 PostMessage Cross-Domain Issue
I am attempting to use the HTML5 method 'postMessage'. I know this method only works in 'modern' browsers, but for my customer base, that is good enough.
Here is my situation:
A browser window on ...
1
vote
4answers
75 views
Do PostMessage() messages appear in order in Windows?
The general question, is if I post several messages to the windows message pump from a separate worker thread, will they appear at their destination in the order I sent? ie..
::PostMessage(m_hUsers, ...
1
vote
1answer
103 views
html 5 postmessage in opera 11.x
i use such construction in iframe to send its height to parent window:
<body onload="parent.postMessage(document.body.scrollHeight, '*');">
...
</body>
there is a listener in parent ...
1
vote
2answers
150 views
postMessage from external script to GWT parent
I just found the joy of communicating from one iframe to another using html5's postMessage.
However, the problem I'm having is that I'm running a GWT application that loads the iframe (with external ...
1
vote
1answer
61 views
Opening a popup after receving message via postMessage
There is an iframe on my site which is hosted on another domain. It can communicate to the main site via window.postMessage. I do have a button on that iframe which calls a JS method on the main ...
1
vote
2answers
325 views
PostMessage and SendMessage WM_SETCURSOR, WM_LBBUTTONDOWN/UP etc all send xPox0, yPos0
I'm writing a C# program to send clicks from a window to another. I'm using SendMessage and PostMessage from the winapi. SendMessage works fine for keyboard events but when I try using it to send ...
1
vote
3answers
175 views
What would be a working value for lParam (low/high keys) in PostMessage? (Win Functions)
I have seen like 20 questions already (here @ stackOverflow) But for some reason I don't get most of the answers they approach. Some other say they understand but I don't see any piece of working code ...
1
vote
2answers
338 views
Wrapping postMessage in jQuery
I'm trying to learn jQuery, I want to make a simple postMessage client.
Is it possible to wrap it in jquery? The first alert works, but the second does not.
I'm trying to modify this code: ...
1
vote
2answers
437 views
Creating a custom message/event with QT
I have an RPC thread that is calling back to me form that thread. I need to somehow inform QT that it needs to make a function call from the main thread. In straight windows I could do this by using ...
1
vote
1answer
234 views
Emulate mouse events with PostMessage without gaining focus (WINAPI)
I emulated the mouse events using PostMessage and tested on the notepad application.
I don't want to gain focus of the notepad application by sending mouse events.
The events are received only if I ...
1
vote
1answer
989 views
c# PostMessage not sending and no error
First off,
I'm trying to send keyboard input to a background application(A window that does'nt have focus or might not even appear visible to the user).
I've verified that the winHandle and constants ...
1
vote
1answer
144 views
How to design cleaner PostMessage chain in WinApi/MFC
I have a MFC GUI app that has multiple frames (sort of like Outlook'ish behavior with main window, and message/appointment windows being created in new frames, or Skype like multi frame ...
1
vote
2answers
2k views
C++ WINAPI: How to use SendMessage/PostMessage WM_KEYDOWN lparam
As an amateur to anything lower than VB/VBS (C++ WINAPI is a nightmare for someone of my experience) I have no idea how to go about constructing the long lParam for a simple KEYDOWN message in C++ and ...
1
vote
1answer
534 views
What window.postMessage emulation options are there for IE7?
I'm aware of the hacks using hash tags, however, I need bi-directional communication with larger payloads and higher throughput. Are there any Flash/ActiveX/etc options that make this possible?
1
vote
1answer
523 views
Virtual Key Press in window C#
Hey, I am trying to type a message into notepad without having to have it as my focus window (Foreground Window).
This is what I have so far:
const UInt32 WM_KEYDOWN = 0x0100;
const int ...
1
vote
1answer
77 views
When initializing a main window win32, when is the best time to show a modal dialog?
I'm trying to accomplish this in Win32, but I'm sure the same rules apply in the world of WinForms.
Q: I create my main window, and then, when it is being shown, I want to show a modal dialog. The ...
1
vote
4answers
829 views
Is it possible to sendkeys / Post Message directly to a HtmlElement rather than to a webbrowser control?
I would like to send keys to a c# web browser control element directly, not just the window with the correct focus.
Right now I am able to send a key using PostMessage and documentHandle and focus ...
1
vote
6answers
829 views
Sending WM_COMMAND to a TMenuItem
In my Delphi form's OnShow method, I determine that a dialog must be opened automatically once the form is opened - and I should be able to do this by simulating a click on a menuitem.
However, ...
1
vote
4answers
1k views
Which is faster: SetEvent, SendMessage, PostMessage
Environment: Win32, C/C++
All three (3) can be used for a thread to signal to main() that it has completed an operation for example.
But which one is the fastest signal of all?
hmm...
1
vote
4answers
1k views
Send a double click to a listview (c++, not .net!)
I want to send a double click to a listview. From what I've read on msdn it seems I gotta send a WM_NOTIFY message and something with NM_DBLCLK. But I do not understand really well hwo to implement ...
1
vote
8answers
3k views
PostMessage in service applications
There is a problem I am unable to solve. I created two service applications in Delphi and tried to post messages within them. Of course, there are no windows in such applications and PostMessage needs ...
1
vote
3answers
2k views
Programmatically change combobox
I need to update a combobox with a new value so it changes the reflected text in it. The cleanest way to do this is after the combobox has been initialised and with a message.
So I am trying to craft ...
0
votes
0answers
10 views
Can I do synchronous cross-domain communicating with window.postMessage?
I'm thinking of using window.postMessage directly for cross-domain communication.
If I do:
postMessage() from the parent frame
Load an iframe
window.addEventListener("message", callback, false); ...
0
votes
1answer
31 views
html5 postMessage not working
My window.addEventListener's function is not getting fired even when I repeatedly send the domain messages via postMessage. It's seems like it isn't receiving any response at all. Here is the code:
...
0
votes
1answer
42 views
Copy text data from another application
I need to recieve data from some win application (not mine). Application window can be inactive at this time.
Data I need is represented in table, so I am unable to use WM_GETTEXT, WM_COPY because ...
0
votes
0answers
35 views
IE9 authentication not working
I'm getting authentication problems with IE9 which seem to have been reported before but marked as fixed by facebook. The originals are:
http://forum.developers.facebook.net/viewtopic.php?id=102596
...