Popup

rabat bass
yalli tsab nass

Numéro de la piste Titre Classement Nombre d'écoutes Télécharger Ajouter à mon blog Actions
1 yalli tsab nass
4 lectures
2 yakhti mafhamtech achsaletak 3liya
79 lectures
3 konti tgouli tabghini
64 lectures
4 gess how's back
34 lectures

Tu n'as pas la bonne version de Flash pour utiliser le player Skyrock Music.
Clique ici pour installer Flash.

le m3ani kat3ani polomar 3awtani

le m3ani kat3ani polomar 3awtani
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
if Pad < 0 or Pad > 25:
tkMessageBox.showerror( 'Pad amount invalid',
'The per cell pad amount must be between 0 and 25 pixels
'
)
returnclickhere www.netlog.com/le_polomar
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le dimanche 02 mars 2008 17:49

Modifié le mercredi 02 avril 2008 19:25

kanswa tone ou chade blasti 7ite 3arfe ri7ghadiji weghayadi lekartoune

kanswa tone ou chade blasti 7ite 3arfe ri7ghadiji weghayadi lekartoune
Amo_______:
$ Sara Guerra (Cunhada + boa do mundo...Amo.te)
$ Ana Maria (akela amigah do coraxao)
$ Rúben (amigo para a vida)
$ Sara Costa (amiga para sempre...adoro,te)

$ Tiago Morgado (akele ninuh especial <3)
$ Morena "Sofia" (Ador.te es linda)
$ Rui (o meu guarda costas)
$ Bruno 7 (um amigo k nunka vou eskecer adwt)
$ Susana (es boa e mais nada)

$ Martitah ( betinha doida mas goxto dela)
$ Caty (akela explika de mat mais linda...adoro.te)
$ Vania (amiga 5*)
$ Marina (falei poukas vexex com ela max jà a adoro***)
$ Sónia( fas xempe falta)
$ Mikas (akela k n se esquece)
$ Rodas (o meninuh divertido, fax xempe falta)
$ Kell (amigah k nunka esquecerei)

$ Milene (akela maiga xata max do coraxao)
clickhere www.bijou23379.skyblog.com
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le dimanche 02 mars 2008 17:47

Modifié le mercredi 02 avril 2008 19:33

tarik and rad1

tarik and rad1
jenine tudo bem desde aquele dia da festa do liceu , nunca mais te vi, o teu perfil esta exelente gosto desta musica do dj e mt fixe quero desejar uma continuaçao de fim semana e aproveita para apanhar solinho es uma fofinha e mt simpatica como vao as coisas ctg e com teu menino
um grande beijo deste amigo
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le dimanche 02 mars 2008 17:44

Modifié le lundi 03 mars 2008 09:05

ana fe3otla ou dj red1 daglihe lebera

ana fe3otla ou dj red1 daglihe lebera
Eu Sou_________________:
*Simples
*Teimosa
*Simpatica
*Brincalhona
*Faladora (quando me apetece)
*Amiga
*Aventureira
*Confidente
*Directa
*Sonhadora
*Justa
*Vingativa
*Sei perdoar


Gosto de______________:
`Ajudar
`Amar que me ama***
`Gosto de liberdade
`Sou maluka por animais:::(n poxo velos principalmente CAES).
`Adoro a minha familia(n consigo viver sem ela)
`adoro artes...
`adoro divertir.me
`adoro o SLB


Detexto_________:
-detexto que nao confiem em mim
-detexto injustiças
-detexto que se riam nas minhas costas(quem fax ixo sempre sai prejudicado)
-nao poxo dixer que detexto pessoas mentirosas pk toda a gente mente pelo menos 1 vex.
-detexto falsidades clickhere www.polomar23.skyblog.com
-detexto akelas pessoas que pensam k sao tudo max no fundo nao valem um >CoRnO <!
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le dimanche 02 mars 2008 17:43

Modifié le mercredi 02 avril 2008 19:42

hadi fekhatare le3achrane men chichane 7ata lalamane

hadi fekhatare le3achrane men chichane 7ata lalamane
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.
# 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 )
"> clickhere http://polomar.badoo.com

self.GridLinesY = IntVar()
self.GridLinesY.set( NumRows
)
[ Ajouter un commentaire ] [ Aucun commentaire ]

# Posté le dimanche 02 mars 2008 17:41

Modifié le jeudi 03 avril 2008 19:29