Page 1 of 1

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

Posted: Mon Jul 30, 2007 10:32 am
by Timid
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

Posted: Mon Jul 30, 2007 12:32 pm
by Softanics
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.

Posted: Mon Jul 30, 2007 12:33 pm
by Timid
Thanks.

Posted: Sat Aug 18, 2007 11:51 pm
by Softanics

Posted: Tue Aug 28, 2007 11:39 am
by Adrian Hдmmerli
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

Posted: Tue Aug 28, 2007 11:43 am
by Softanics
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;

Posted: Tue Aug 28, 2007 12:30 pm
by Adrian Hдmmerli
Thanks for fast Reply and Help! :mrgreen: