May i hook the call IE with URL from swf in f-in-box?

F-IN-BOX for Delphi / Builder C++ / VCL
Timid
Posts: 6
Joined: Thu Jul 26, 2007 9:21 am

May i hook the call IE with URL from swf in f-in-box?

Postby Timid » Mon Jul 30, 2007 10:32 am

Dear customer,
Thans for you help for my last problem

I have new exersize for you:

In my filecash application i want to hook the event, when flash ocx will be calling IE with URL (When its want to load HTML page to external explorer window). May i realize this?

Before thanks

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Mon Jul 30, 2007 12:32 pm

Thank you for your question.

Yes, now it's possible. I've just added new global event for that. The updated version will be uploaded in the nearest time. I will notify you.
Best regards, Artem A. Razin,
F-IN-BOX support
Ask your question here: http://www.f-in-box.com/support.html

Timid
Posts: 6
Joined: Thu Jul 26, 2007 9:21 am

Postby Timid » Mon Jul 30, 2007 12:33 pm

Thanks.

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Sat Aug 18, 2007 11:51 pm

Best regards, Artem A. Razin,

F-IN-BOX support

Ask your question here: http://www.f-in-box.com/support.html

Adrian Hдmmerli
Posts: 2
Joined: Tue Aug 28, 2007 10:05 am

Postby Adrian Hдmmerli » Tue Aug 28, 2007 11:39 am

Hello and Sorry

I have Installed Trial Version 3.2 on D2006 but i can't find the OnPreProcessURL Event, in the IDE? Can evereyone help ?

Sorry for my bad english...

Best Regeards
Adrian Hдmmerli

Softanics
Site Admin
Posts: 1402
Joined: Sat Sep 18, 2004 3:03 am
Location: Russia, St. Petersburg
Contact:

Postby Softanics » Tue Aug 28, 2007 11:43 am

Adrian Hдmmerli wrote:I have Installed Trial Version 3.2 on D2006 but i can't find the OnPreProcessURL Event, in the IDE? Can evereyone help ?


It's a global event:

Code: Select all

type
  TMainForm = class(TForm)
...
    procedure OnPreProcessURL(var URL: WideString; out Continue: boolean);
...
procedure TMainForm.FormCreate(Sender: TObject);
begin
...
  SetGlobalPreProcessURLHandler(OnPreProcessURL);
end;
...
procedure TMainForm.OnPreProcessURL(var URL: WideString; out Continue: boolean);
begin
   Continue := true;

   if URL = 'tratata' then
   begin
      URL := 'lalala';
   end;
end;
Best regards, Artem A. Razin,

F-IN-BOX support

Ask your question here: http://www.f-in-box.com/support.html

Adrian Hдmmerli
Posts: 2
Joined: Tue Aug 28, 2007 10:05 am

Postby Adrian Hдmmerli » Tue Aug 28, 2007 12:30 pm

Thanks for fast Reply and Help! :mrgreen:


Return to “Delphi / Builder / VCL Edition”

Who is online

Users browsing this forum: No registered users and 22 guests

cron