Tip: Showing an AnimGIF in a window

Share your advanced PureBasic knowledge/code with the community.
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Tip: Showing an AnimGIF in a window

Post by BackupUser »

Code updated for 5.20+

Restored from previous forum. Originally posted by PB.

NOTE: You may wish to visit the following post to see how to compile
an animated gif as part of your executable, instead of loading it as a
separate file:

viewtopic.php?t=2047

The tip:

Code: Select all

; Example of an AnimGIF inside a window.
; By PB -- do whatever you want with it.
;
; IMPORTANT: Read PureBasic's requirements for WebGadgets!
;
If OpenWindow(0,200,200,450,200,"Test",#PB_Window_SystemMenu)
  
  url$="C:\AnimGIF.gif" ; You *must* specify the full path to the animgif for this to work!
  
  WebGadget(0,0,0,450,200,url$)
  
  Repeat
    ev=WaitWindowEvent()
  Until ev=#PB_Event_CloseWindow
EndIf

PB - Registered PureBasic Coder
Last edited by fsw on Thu Aug 22, 2013 8:55 pm, edited 1 time in total.
Reason: Code updated for 5.20+
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by Pantcho!.

thanks!
but is there anyway to disable the IE right click button?
that no menu will be shown for like copy/save pic etc... ?


---
Registered Purebasic Member!
---
Resp'cta!
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by PB.

> is there anyway to disable the IE right click button?

Put DisableGadget(0,#TRUE) after the WebGadget command.


PB - Registered PureBasic Coder
BackupUser
PureBasic Guru
PureBasic Guru
Posts: 16777133
Joined: Tue Apr 22, 2003 7:42 pm

Post by BackupUser »

Restored from previous forum. Originally posted by El_Choni.

About disabling right-click, why don't do it in JavaScript? The transparent background is determined when you make your animated GIF.


El_Choni
Post Reply