Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #3K
~13.7K People Reached
Favorite Tags
Member Avatar for bettersaid

Hello, I stupidly terminated 'Windows Logon Application' using TuneUp Process Manager. And as expected, I cannot login using any account. I already tried Startup Recovery, rebooting in safe mode. etc But still, error message appears in login screen I opened the registry files, went to ProfileList and I noticed only …

Member Avatar for Viorel_1
0
528
Member Avatar for bettersaid

I am unable to proceed any further than [B]loading bar[/B] after turning on my laptop. It's Samsung; Vista, Dual Core. F2 and F12 doesn't work Also, [B]F8 doesn't work[/B]. I already tried pressing all possible key for safe mode so I could load previous configuration but failed. PLEASE HELP.

Member Avatar for dimsums
0
189
Member Avatar for jjemphoung

good day! im new to dream weaver cs4. i am just starting to develop a dynamic page. i layout in the design area of DW cs4. i have 2 main tables. the first one is for the heading and below is for the content. i used an empty table between …

Member Avatar for matricol
0
182
Member Avatar for bettersaid

Any suggestion what's the best tab to use in loading external pages(html). Im also thinking of adding multiple subtabs within parent tab. I really need expert's opinion on this matter. Thank you

Member Avatar for bettersaid
0
156
Member Avatar for bettersaid

anybody knows the limitation of lp in terminal printing. i have noticed that 3rd party applications are not supported, am i right? can anybody gimme a list of applications supported in lp terminal (printing) like .rtf, .png, or TextEdit, Preview. thanks

Member Avatar for marekbar218
0
75
Member Avatar for bettersaid

someone knows how to launch an app in mac?? [CODE] import os class LaunchApp: def launch(self): os.startfile("/Applications/QuickTime Player.app") s = LaunchApp() s.launch()[/CODE] this code works on windows and [CODE]os.system('gnome-open ' + /path)[/CODE] on linux but in mac, it returns this error "AttributeError: 'module' object has no attribute 'startfile'"

Member Avatar for nathan099
0
1K
Member Avatar for bettersaid

Is it possible in python to open all files in a directory? this only opens a particular file: [CODE]import os path = "/Desktop/directory/file.odt" temp = os.system("open " + path)[/CODE] how about this? am i doing it right? [CODE]import os mypath = "/Desktop/directory" temp = os.listdir(mypath) temp = [os.path.join(mypath, i) for …

Member Avatar for redyugi
0
127
Member Avatar for bettersaid

[CODE]import os from appscript import * this = app(u'System Events').application_processes[param1].windows[param2].exists() while True: this1 = app(u'System Events').application_processes[param1].windows[param2].count(each=k.radio_button) if count == (this1): this2 = app(u'System Events').application_processes[param1].windows[param2].radio_buttons[param3].click() try: os.makedirs(param1) except OSError: if os.path.exists(param1): this3 = os.system('screencapture -C '+ param1 +'/'+ param2) while True: self.param2 = os.path.join(param1, 'win%s_%s_img_%s' % (param1, param2)) return param2 + …

Member Avatar for bettersaid
0
186
Member Avatar for bettersaid

f i opened a document in terminal through this [CODE]os.system("open " + pathName)[/CODE] how should i close it? is there something like [CODE]os.system("exit")[/CODE] or something Thanks

Member Avatar for bettersaid
0
75
Member Avatar for bettersaid

helo! can anyone help me in automatically saving files with fixed filename in python? the OUTPUT would be like this: FILE- A01.txt FILE- A02.txt FILE- B01.txt File- B02.txt i was hoping that i could save a file automatically after making some changes in the older version. Thank you, Gene

Member Avatar for bettersaid
0
430
Member Avatar for President007

Hi, Im making a website by designing in Photoshop and then slicing and pasting in to Dreamweaver. My problem is; im trying to paste my slice in to Dreamweaver, instead of pasting right after the last slice it keeps going to the following line...:s Any help would be appreciated.

Member Avatar for President007
0
78
Member Avatar for bettersaid

hello! i've been trying to create an automated task which it should: 1. open Print 2. choose Printer 3. change Paper Size ( i want to print my doc in all paper size) but i find my code too long and oh i dont know, and i want to simplify …

0
133
Member Avatar for xofth

I need a website template that looks like bloger so i can post new topics. i dont need blogger template i want a website template..

Member Avatar for mariko
0
123
Member Avatar for deeapk_kapdi

Hi, I am a beginner in Python. I have created 1 script in notepad++ and trying to execute the script from command line but it's giving an error. I have set the PATH of Python in the environment variables also. Can anyone send me the complete steps for executing the …

Member Avatar for TrustyTony
0
9K
Member Avatar for bettersaid

help! dunno how to convert this in python.. 'contains == ???' in python [CODE]if (basket contains "fruits") then try tell application "Document" to tell application "System Events" to tell application process "Document" to click button "Cancel" of sheet 1 of window "Untitled" tell application "Document" to quit saving no end …

Member Avatar for bettersaid
0
161
Member Avatar for bettersaid

[CODE]from Tkinter import * class ButtonHandler: def __init__(self): self.root = Tk() self.root.geometry('600x500+200+200') self.label = Label(self.root, text=str(self.mousedown)) self.can = Canvas(self.root, width='500', height='400', bg='white') self.can.bind("<Motion>",lambda x:self.handler(x,'motion')) self.can.bind("<Button-1>",lambda x:self.handler(x,'press')) self.can.bind("<ButtonRelease-1>",lambda x:self.handler(x,'release')) self.label.pack() self.can.pack() self.root.mainloop() def mouseDown(self, event ): return 1 def handler(self,event,x): if x == 'press': self.mousedown = 1 elif x == 'release': …

Member Avatar for TrustyTony
0
188
Member Avatar for bettersaid

i need help in controlling mouse click in python. Example would be 'clicking File menu --> Save Us--> Save' on its own. I have this code for launching an app, for example a textfile. but i dont know how to control its mouse click. Advice please. [CODE]import os class LaunchApp: …

Member Avatar for bettersaid
0
103
Member Avatar for bettersaid

i want explore the use of PIL but my first try got me this error : ImportError: " No module named ImageGrab " i tried it in terminal by typing 'python -v', 'import Image' but im broke. please help! thanks[CODE] import ImageGrab capture=ImageGrab.grab() capture.save('screen.png')[/CODE]

Member Avatar for TrustyTony
0
141
Member Avatar for bettersaid

anyone knows how to launch an application, for example, a .exe, in mac?? this code works for me in ubuntu, i tried it in mac but its not working: [CODE]os.system('gnome-open ' + path)[/CODE]

Member Avatar for TrustyTony
0
154
Member Avatar for bettersaid

im a newbie to python, still learning as of today. as a part of my 'self-training' i listed some topics to practice every week but i was not able to run it successfully and im stuck. what i wanted with my activity is for it to read a .txt file …

Member Avatar for woooee
0
174