Posts by Mega Anim • 323 points
17 posts
-
1
votes1
answer216
viewsQ: http connection to c++ and Curl or any other library
I need to request https and http url. I found several libraries, some easy, some not so easy, but the only one I could install was Curl. I’ve taken several examples, the problem is that in the…
-
0
votes0
answers47
viewsQ: How do I deactivate Focus in a window even if I click it?
I am programming a virtual keyboard, where I will type by clicking the mouse. In python2.7 interface Qt4 I’ve been able to solve the idea enough, I’ve been able to make him keep showing up, and also…
-
0
votes2
answers67
viewsQ: help with php regular expression
I need to remove all tags along with the content and closing of the tag, when it’s script by tag. Example $variable="Something"; I want to remove all this from html <script>alguma funcao…
-
5
votes2
answers844
viewsQ: How to separate tags from a variable in PHP array
I want to separate tags into one array in PHP, but I couldn’t find an efficient way yet. I want to turn this:…
-
1
votes1
answer43
viewsQ: how to access non-standard javascript properties
Hello, I do an xml request, and I get a tag called item, with some unconventional attributes $.ajax({ type:"GET", dataType: 'text', url : "requests/playlist_jstree.xml", success: function(retorno){…
javascriptasked Mega Anim 323 -
3
votes1
answer85
viewsQ: Capture music running in another person’s app
Hello, on Facebook has a button that shows which Spotify song is running. Is there a way to do that in my app? I’ve looked for information but I can not find how to do it on Android. What I want is…
-
0
votes1
answer68
viewsQ: how to make tap function in android notification
Hello, I have the following situation, is a chat, and the user receives a message.. I want that when the app is minimized it receives an alert... The alert part I’ve done and it’s working:…
-
0
votes1
answer111
views -
0
votes1
answer111
views -
2
votes1
answer257
viewsQ: How to convert str to python
I have to make a comparison between 2 items, one is in Unicode, and the other is in str, being that what is like str is an array. for bloqueiosPermanentes in arquivo:…
-
5
votes1
answer165
viewsQ: python process
I’m trying to change an external variable within a process but it’s not working. I created a simple test class: from multiprocessing import Process class Classe(): def __init__(self, parent=None):…
-
3
votes1
answer669
views -
1
votes1
answer420
viewsQ: Problem compiling python in pyqt libraries, with py2exe
I’m trying to compile with py2exe, but when I compile from error. Let me give you an example of this error, with Python 2.7 64-bit programs, pyqt4 for Python 2.7, and py2exe for Python 2.7. Follow…
-
0
votes0
answers35
viewsQ: Problem with websocket Qt and javascript
Hello I have a webview component, in Qt, in it I load an html page.. In linux works perfectly... Already in windows the websocket is stopping and starting and can not start... Does anyone have any…
-
0
votes1
answer155
viewsA: As I call a method of a Qtgui.Qmainwindow class, within another Qobject class in python
I managed to solve. Just create the class within the class, and use any function to start and send the Parent inside the :) subclass solved
-
0
votes0
answers175
viewsQ: How to enable vertical scrollbar in python qwebview?
I need to enable the scrollbar in a widget qwebview, and put the automatic scrolling, but I couldn’t find any information on how to do this in python. I tried to do so:…
-
1
votes1
answer155
viewsQ: As I call a method of a Qtgui.Qmainwindow class, within another Qobject class in python
I have a class: class MyWindow2Class(QtGui.QMainWindow, form2_class): within the init I have this piece of code: self.scr = ScriptManager(self)…