Page 1 of 1

I still see "Demo Version"

Posted: Wed Aug 22, 2007 8:58 am
by SamJokO
i got 'Single developer License' - 2006-09-22

i using in delphi6 and Flashcontrol...SetContext('....');

but, i still see "Demo Version" flag.

what am i doing?

Posted: Wed Aug 22, 2007 9:04 am
by Softanics
Thank you for your question.

You should place SetContext in the initialization section. Where do you place SetContext?

Posted: Wed Aug 22, 2007 9:24 am
by SamJokO
i create fMain form.

and i placed in FormCreate procedure.

sample app is running ok.

what's different?

Posted: Wed Aug 22, 2007 10:20 am
by Softanics
SamJokO wrote:i create fMain form.

and i placed in FormCreate procedure.

sample app is running ok.

what's different?


The difference is that when you call SetContext in FormCreate, flashplayercontrol is already created. That's why you should SetContext before creating any instances of TFlashPlayerControl or TTransparentFlashPlayerControl. Place SetContext in the initialization section in dpr file:

Code: Select all


begin
  Application.Initialize;

  SetContext(...);

  Application.CreateForm(...);
  Application.Run;

it still not working...

Posted: Thu Aug 23, 2007 12:39 am
by SamJokO
i tried like this...

[code]

uses
Forms,
FlashPlayerControl,
...
...

begin
Application.Initialize;
FlashPlayerControl.SetContext('.....');
Application.CreateForm(....);
...
[/code]

but it still visible 'Demo Version'

and, later i tried like this

[code]
private
Flash : TFlashPlayerControl;
...
...

Procedure TForm1.FormCreate(Sender: TObject);
begin
FlashPlayerControl.SetContext(.......);
Flash := TFlashPlayerControl.Create(Self);
Flash.Parent := Self;
Flash.Visible := true;
end;
[/code]

but, it's not working.

i download v3.1.2 without_sources

it's something change?? version 3.01 is working very well.

Posted: Thu Aug 23, 2007 8:27 am
by Softanics
It seems, it's our mistake. We will resolve the issue in the nearest time.

Posted: Thu Aug 23, 2007 8:28 am
by Softanics
The updated version will be available tomorrow. I'm sorry for the delaying.

Posted: Thu Aug 23, 2007 4:43 pm
by Softanics
We have found the problem... The update is almost ready.

Posted: Thu Aug 23, 2007 10:07 pm
by Softanics
Please download it and check again.

Thank you.

Posted: Fri Aug 24, 2007 8:33 am
by SamJokO
thx! it's working!