Re: [Gambas-user] i Build a RPM package but...

2015-07-12 Thread Jesus
El 12/7/15 a las 13:01, tsukuba GIMP user escribió: > ... I using "mediaview" but it's no have like picture.load("xxx.png") options > mediaview only have "mediaview.url" options i must use music = > application.Path &/ "music1.mp3" > and then it's working > ok here is my code: > > Public Sub Butt

Re: [Gambas-user] i Build a RPM package but...

2015-07-12 Thread tsukuba GIMP user
... I using "mediaview" but it's no have like picture.load("xxx.png") options mediaview only have "mediaview.url" options i must use music = application.Path &/ "music1.mp3" and then it's working ok here is my code: Public Sub Button1_Click() Dim music As String MediaView1.Stop music = ap

Re: [Gambas-user] i Build a RPM package but...

2015-07-12 Thread Tobias Boege
On Sun, 12 Jul 2015, tsukuba GIMP user wrote: > but if use "music = application.Path & "/music1.mp3"" when i build RPM > package the file"/music1.mp3" will be added or not added? > (and i try use music = application.patch & "music1.mp3" it's will not working > but "/music1.mp3" is working) > Yo

Re: [Gambas-user] i Build a RPM package but...

2015-07-12 Thread tsukuba GIMP user
Subject: Re: [Gambas-user] i Build a RPM package but... On Sun, 12 Jul 2015, tsukuba GIMP user

Re: [Gambas-user] i Build a RPM package but...

2015-07-12 Thread Tobias Boege
On Sun, 12 Jul 2015, tsukuba GIMP user wrote: > music = application.Path & "/.hidden/music1.mp3" > this application.path is /usr/bin/.hidden or /usr/share/.hidden?(and i want > to change /.hidden to /.musicfiles) > ??my program in debug it's working but if build the RPM and I install it's > not w

[Gambas-user] i Build a RPM package but...

2015-07-12 Thread tsukuba GIMP user
music = application.Path & "/.hidden/music1.mp3" this application.path is /usr/bin/.hidden or /usr/share/.hidden?(and i want to change /.hidden to /.musicfiles) ??my program in debug it's working but if build the RPM and I install it's not working because file not found...?? -