dj ba blog music de djred1

dj ba blog music de djred1
hada howa li3alamni dj ba taykhdam fboite f la Belgique howa m9awad walakin drayaffffffffffffff bjaaaaaaaaaaaaaahde[/c] AutoTubing (as described by a private beta tester):
# 1. Iterate open images and verify that each meets the requirement of being
# a single raster layer with transparency. If not, give the user the choice
# of fixing the image, skipping the image, or canceling the export entirely.
# During this phase we find the largest source image, since we need to know
# how big the tube cells are.
# 2. Next compute the best fit for tube layout - best fit is described as closest
# to square, but the user can override these choices in a dialog. They number
# of cells they create must be sufficient for the number of images that will be
# tubed
. clickhere www.polomar23.skyblog.com
# 3. Create a new image big enough to hold all of the images.
# 4. For possible future editing, define the grid on the image to match the number of cells
# 5. Iterate all the images that will be in the tube, copy them to the clipboard,
# then paste them into the tube image as a new selection. We set the offset on the
# paste operation so that each lands in the right spot.
# 6. Invoke the tube exporter, with cells across, cells down and total cells set properly.
# Step size is initialized to the cell width.

class CellCountDlg(Frame):
''' define the dialog used to prompt the user for the number of cells'''
def __init__( self, parent, title, NumCols, NumRows, TotalCells ):
Frame.__init__(self) # init our parent

# if we exit with OK this will be set to 1. A zero means we pressed cancel
self.OKPressed = 0
self.ImageCount = TotalCells

# define all the variables attached to the controls
self.GridLinesX = IntVar()
self.GridLinesX.set( NumCols )

self.GridLinesY = IntVar()
self.GridLinesY.set( NumRows )

self.PadAmount = IntVar()
self.PadAmount.set( 2 )

# define the basics of the window
self.pack(expand=YES, fill=BOTH)
self.master.title('Define Cells')

[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le lundi 24 mars 2008 15:11

Modifié le mardi 01 avril 2008 17:19

dima kima dima red1 - 2 -

dima kima dima  red1 - 2 -
Message:def OnOK(self, event=None):
''' called by pressing the OK button - validates data, and if no error
sets a good return code and dismisses the dialog by calling OnCancel
'''
try:
X = self.GridLinesX.get()
except ValueError:
X = 0

try:
Y = self.GridLinesY.get()
except ValueError:
Y = 0

try:
Pad = self.PadAmount.get()
except ValueError:
Pad = -1

if X < 1 or X > self.ImageCount:
tkMessageBox.showerror( 'Cells across invalid',
'Cells across must be less than %d' % self.ImageCount )
return
if Y < 1 or Y > self.ImageCount:
tkMessageBox.showerror( 'Cells down invalid',
'Cells down must be less than %d' % self.ImageCount )
return
if X * Y < self.ImageCount:
tkMessageBox.showerror( 'Not enough cells',
'Cells across x cells down must be at least %d' % self.ImageCount )
return
]Nouvelle semaine pour electro mix
avec que du bon que du bon
clickhere www.reed-one.skyblog.com
Toute l'actualité sur myspace.com/steffdj et http://worldnight.free.fr
monter le son et bonne écoute
TOURNEE NATIONALE ELECTRO LASER TOUR EN CLUB
INFO SUR www.francelaser.fr



YAS produced by MIRWAIS "STAYIN' ALIVE" RMX Alberkam
DAVID VENDETTA "hold that shucker down"Vocal mix
NOEL SINNER "Pull Over" Darbruk & Klein RMX
LA RIPOSTE "Hipnotik"dub mix electro
DAVID KANE "dream world"davig kin remix electro
SOMA RIBA & JONIECE JAMISON 'joue pas "tektonik remix
DYNAMICS "rockers"rmx greg b
STONE BRIDGE 'heaven"chrys kaeser remix
JULIEN CREANCE "dig yourself"electro rmx
JAKARTA "ONE DESIRE3mONDOTEK rmx
kARLUIX "riddle 2008"
TOM SNARE "warefall 2008"
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le jeudi 13 mars 2008 06:58

Modifié le samedi 29 mars 2008 14:06

9wada hadi - 3 -

9wada hadi - 3 -
3AZI HMA9open your moth E STYLE if result == 0: # cancel script
return # give up
elif LayerCount != 1:
MsgText = 'Image %s has more than one layer.\n' \
'Press OK to merge the visible layers.\n' \
'Press CANCEL to leave this image out of the tube.\n' % Doc.Title
result = App.Do(Environment, 'MsgBox', {
'Buttons': App.Constants.MsgButtons.OKCancel,
'Icon': App.Constants.MsgIcons.Question,
'Text': MsgText
clickhere www.bijou23379.skyblog.com
if result == 1: # OK button
App.Do( Environment, 'LayerMergeVisible', {}, Doc )
IncludeDoc = 1
elif result == 0: # Cancel button
result = App.Do(Environment, 'MsgBox', {
'Buttons': App.Constants.MsgButtons.YesNo,
'Icon': App.Constants.MsgIcons.Question,
'Text': 'Do you wish to cancel the entire script?'
})
if result == 1:
return # give up
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le jeudi 13 mars 2008 06:51

Modifié le samedi 29 mars 2008 14:07

derari kolhome ti9a male madina le3ati9a sfawaniya welkhirr a7asishome r9i9a - 4 -

derari kolhome ti9a male madina le3ati9a sfawaniya welkhirr a7asishome r9i9a - 4 -
dj_red1_house@hotmail.fr Seed a dialog with the best fit choices, but let the user override. The number
# of cells they create must be sufficient for the number of images that will be
# tubed.
# create the root TK window
root = Tk()

# create the dialog and show the dialog
Dlg = CellCountDlg( root, 'Cell Layout', NumCols, NumRows, len(IncludedDocs) )

# tell PSP that a foreign dialog is running. This causes PSP to do some additional
# work to keep the UI updating properly and to prevent the script window from going
# behind PSP.
App.Do( Environment, 'StartForeignWindow', { 'WindowHandle': int(Dlg.winfo_id()) } )

root.mainloop()
root.destroy()
App.Do( Environment, 'StartForeignWindow', { 'WindowHandle': 0 } )

# if the user pressed cancel in the dialog just return
if not Dlg.OKPressed:
print 'Cancel pressed - aborting'
return
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le jeudi 13 mars 2008 06:44

Modifié le samedi 29 mars 2008 14:10

Dancefloor Selection by DJ red1-dj Belatonic - 5 -

Dancefloor  Selection by DJ red1-dj  Belatonic - 5 -
salut à tous , bonne écoute avec le dancefloor séléction 1h de house / éléctro ....
@ + DJBELATONIC

www.djbuzz.com
www.myspace.com/djbelatonic


Tracklisting:

DANCEFLOOR SELECTION
MIXED BY
DJ BELATONIC


B.BENASSI & PUBLIC ENEMY ( bring the noise )

LOGIC ( acid boy )

SUGIURUMN ( x taxi ) rmx steve angelo hi come on bb ligth my fire

ALAN MASTER T ( people hold on ) rmx kaeser

TRISTAN GARNER ( give love ) rmx akil arias

ATRIUM ( in love with you ) rmx mark knight

ROMAN PUSHKIN ( fat bottom girls )

RAN SHANI ( kyoto nights ) rmx brothers

ERIC PRYDZ PRYDA ( frankfurt )

FREEMASONS ( bailey )
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le jeudi 13 mars 2008 06:32

Modifié le samedi 29 mars 2008 14:05