| View previous topic :: View next topic |
| Author |
Message |
Quatre87 Valued Newbie
Joined: 07 Jan 2004 Posts: 25
|
Posted: Fri Oct 08, 2004 10:50 pm Post subject: Flash objects |
|
|
| How can i add a macromedia flash object into a vds 4 dialog? |
|
| Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Sat Oct 09, 2004 8:37 am Post subject: |
|
|
Hi Quatre,
There were some DLLs which were able to display Macromedia Flash files on a VDS dialog, but they were taken offline by the developer because of some particulair reasons. Another option for you is to display a browser element on you dialog, and to load the SWF file into that. Please note that this way, people should have both IE and the Macromedia Flash plugin installed, if I'm right. But, I don't know where to find these browser elements for VDS 4, because I think they are all upgraded to only work with VDS 5... Anybody else? _________________ [ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial! |
|
| Back to top |
|
 |
CodeScript Moderator Team

Joined: 08 Jun 2003 Posts: 1060 Location: India
|
Posted: Sun Oct 10, 2004 2:46 pm Post subject: |
|
|
Quatre87 If U are ready to buy that dll without support U might consider asking the author. I really can't say anything more than that.
However a dll would be te best way to go esp in VDS 4. _________________ Regards
- CodeScript
Give your application a professional look with the VDSGUI Extension |
|
| Back to top |
|
 |
marty Professional Member


Joined: 10 May 2001 Posts: 789
|
|
| Back to top |
|
 |
schihuawa Newbie
Joined: 07 May 2004 Posts: 11
|
Posted: Thu Apr 27, 2006 1:52 pm Post subject: |
|
|
Hi ,
I tryed the VDSXFLASH and it works fine, but I didn't find the way to switch the .swf file from a windows of Dialog script to full screen. thoes this function exist ?
tks |
|
| Back to top |
|
 |
schihuawa Newbie
Joined: 07 May 2004 Posts: 11
|
Posted: Sat Apr 29, 2006 12:42 pm Post subject: |
|
|
Hi
I finaly found a way to view swf files in full screen, but I still don't know how to strech the file to fit all the screen.... if anyone had an idea ....
Tks |
|
| Back to top |
|
 |
vtol Valued Contributor


Joined: 05 Feb 2004 Posts: 656 Location: Eastern Indiana
|
Posted: Sun Feb 10, 2008 6:16 pm Post subject: |
|
|
It works fine for me like this:
| Code: | :changeSIZE
FLASH STOP,fFlash
wait "0.1"
flash remove,fFlash
wait "0.1"
flash window,#%%class
wait "0.1"
flash add,fFlash,1,154,%%flash_window_sizeX,%%flash_window_sizeY
wait "1"
flash background,fFlash,%%back_light_blue
wait "0.1"
flash movie,fFlash,%%work_area_file
wait "1"
goto evloop |
But I'm using HTML + IE instead, since the FLASH DLL is less than v7 and my .SWF was too laggy using vdsxflash.dll. |
|
| Back to top |
|
 |
|