Guest User

Untitled

a guest
Nov 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. import QtQuick 2.0
  2. import QtQuick.Controls 1.1
  3. import QtQuick.Controls.Styles 1.1
  4. import QtMultimedia 5.8
  5.  
  6. Rectangle {
  7. id: main
  8. width: 600
  9. height: 400
  10. state: "mainMenu"
  11. property int margePixel: 30
  12. property int tailleInfoJeux: 200
  13.  
  14. Image {
  15. id: background
  16. source:"qrc:/images/mainbkg"
  17. anchors.fill: parent
  18. fillMode: Image.PreserveAspectCrop
  19. sourceSize.height: 800
  20. }
  21.  
  22. MediaPlayer{
  23. id: musicBkg
  24. source: "file:///Users/COMPUTER/Documents/candycrush/candy-crush-like-master/sound/bkg1.wav"
  25. autoLoad: true
  26. autoPlay: false
  27. volume: 1.0
  28. loops: Audio.Infinite
  29.  
  30. Component.onCompleted: {
  31. //console.log(source==Qt.resolvedUrl("file:///Users/COMPUTER/Documents/candycrush/candy-crush-like-master/sound/Kalimba.mp3"))
  32. console.log(musicBkg.supportedAudioRoles())
  33. }
  34. }
  35. }
Add Comment
Please, Sign In to add comment