Portal    Foro    Buscar    FAQ    Registrarse    Conectarse

¿ Componentes Que No Aparecen En La Lista Del Editor ? [SOLUCIONADO]

¿ Componentes Que No Aparecen En La Lista Del Editor ? [SOLUCIONADO]
Artículo
Responder citando    Descargar mensaje  
Mensaje ¿ Componentes Que No Aparecen En La Lista Del Editor ? [SOLUCIONADO] 
 
Buenas!.

En la lista de componentes puedo ver SDL2 y no SDL1. En cambio en Synaptic puedo ver esto:

 sdl

¿ Qué ocurre ?. ¿ Lo sustituye ?.

Saludos



 
última edición por Shell el Martes, 29 Marzo 2016, 00:29; editado 1 vez 
Shell - Ver perfil del usuario Enviar mensaje privado  
Shell [ Lunes, 28 Marzo 2016, 19:25 ]
 


¿ Componentes Que No Aparecen En La Lista Del Editor ? [SOLUCIONADO]
Comentarios
Responder citando    Descargar mensaje  
Mensaje Re: ¿ Componentes Que No Aparecen En La Lista Del Editor ? 
 
Hola Shell

Debes presionar el boton de componentes obsoletos para verlo.

 componentes

Al menos es así en mi instalación...



 
whisper - Ver perfil del usuario Enviar mensaje privado  
whisper [ Lunes, 28 Marzo 2016, 20:27 ]
Responder citando    Descargar mensaje  
Mensaje Re: ¿ Componentes Que No Aparecen En La Lista Del Editor ? 
 
Gracias Whisper!.

Entonces es posible usarlos!. Y yo sin ver el dichoso símbolo.  

Vaya, ahora veo que hay algunas cosas que no son igual en SDL1 y SDL2.
Incluso en el primer ejemplo de la plantilla.

Con SDL2:

Private $hWindow As Window

Public Sub Main()

  $hWindow = New Window As "Window"

  With $hWindow
    .Resize(640, 480)
    .Resizable = False
    .Show
    .FrameRate = 60
  End With

End

Public Sub Window_Draw()
  
  Dim H As Integer
  
  H = Font.DefaultHeight * 4
  
  Draw.Clear
  Draw.Font.Size = H
  Draw.Text("gambas", 0, 0)
  Draw.Text(CStr($hWindow.FrameCount), 0, H)
  
End
 


Con SDL1 y no es lo mismo en algunas cosas.

FrameCount no es FrameRate..

Private $hWindow As Window

Public Sub Main()

  $hWindow = New Window As "Window"

  
  With $hWindow  
    .Width = 640
    .Height = 480
    .Resizable = False
    .Show
    .FrameRate = 60
  End With

End

Public Sub Window_Draw()
  
  Dim H As Integer
 
  h = Font.DefaultFontSize * 4
 
  $hWindow.Clear
  Draw.Begin($hWindow)
  Draw.Font.Size = H
  Draw.Text("gambas", 0, 0)
  Draw.Text(CStr($hWindow.Framerate), 0, H)
  Draw.End
    
End
 


Saludos!



 
Shell - Ver perfil del usuario Enviar mensaje privado  
Shell [ Lunes, 28 Marzo 2016, 21:02 ]
Mostrar mensajes anteriores:    
 
Publicar nuevo tema  Responder al tema  Página 1 de 1
 
 

Usuarios navegando en este tema: 0 registrados, 0 ocultos y 1 invitado
Usuarios registrados conectados: Ninguno


 



 

cron