@# Quotes DB     useful, funny, interesting





Google
 
Web www.quotesdb.info
Undernet  |  EFnet  |  Quakenet  |  Freenode  |  Dalnet  |  Ircnet  |  Galaxynet
Page: 1 2 3 4 5 6 7 8



Comments:

<0> it is
<1> ye i know it
<2> since that sloncek guy closed it a year back or something
<1> dressing**
<2> Alexia, i found the "actionscript from the source" ones okay
<2> its published by macromedia and just goes through a few examples
<0> but i found out like a month or two after it was up/i found out about it that the owner (sloncek) was actually living in the same town as i am
<0> :P
<1> smily, its a mad world mate.
<2> anywho im off
<2> outs
<0> bye
<1> by
<1> i once purchased a 3DS Max bible for 40 quid. Never read it.
<0> lol
<1> ive funded waterstones books with so much money its unbelivable



<1> i love buying books, i hate reading them
<1> although Da Davinchi Code is a book im stuck in at the moment.
<1> Smilyorg what would be a good book from here. Game design, 2d, u know the score: http://www.amazon.co.uk/gp/search/ref=nb_ss_b/203-4541249-0947149?url=search-alias%3Dstripbooks&field-keywords=flash+game
<3> How do you create a Pop Up window that byp***es pop up blockers?
<0> Alexia dunno
<1> phen, active x i think. Not sure, I dont think it can be done anymore
<4> :E
<5> what should I make in flash?
<5> Im new to the program?
<3> how do I align a flash movie absolute top and left
<6> set margin:0px to your body tag
<7> yo anybody could please take alook at this my problem? http://pastehere.com/?odcqyd
<8> hi
<8> i got dynamic text area
<8> it has var: _amount
<8> and in keyframes i put _amount=_currentframe
<8> why it doesnt display anything ?
<7> try _root.amount=
<8> trace(_amount) shows everything correctly
<8> dhs: unfortunatly ...
<8> it didn't help
<7> then try _root.currentframe
<7> dunno man
<8> but it alredy has correct value
<8> the problem is that dynamic text feild doesn;t display it
<7> u set the istance name or the name var?
<8> var
<7> in the text area
<8> only var
<7> try
<7> this._amount= this._currentframe
<7> or this._amount= "this._currentframe"
<7> i'm not ereally an expert, i'm waiting for some help too
<8> :D
<8> ok
<8> :/
<8> i'll check anotherchannel ;]
<8> thx anyway
<9> Anyone with firefox who wants to experiment with something?
<7> no i use ie6 and i'm fine
<10> lo.
<10> can i edit/conver flv file ?
<10> convert to swf :)
<10> can i edit/conver flv file ?
<9> search the web and find out
<10> realy ?
<10> what is web ?
<9> fuqoff
<11> lol
<10> ;)
<10> j/k
<12> Uh, yeah
<12> I'm trying to make a full flash website
<12> ARe tehre any tips and stuff?
<13> yes
<13> http://www.kirupa.com/developer/mx/full_site.htm
<12> yay Kirupa!
<12> Thanks GooseNPA
<14> how do I set my frame name so I can access it via actionscript?
<12> njaguar: click on the frame
<12> Go to the properties panel, and there is a box "<frame label>"



<15> bacon?
<14> ah, thank you
<14> weird, it's still not seeing the events. :(
<16> morning guys
<16> warez shiznit?
<14> it still shows "not_set_yet.addEventListener(.." when I try to double click an event in the actionscript list, meaning, I didnt set it right i guess?
<17> hi .. Look this gives me an error
<17> Movieclip.prototype.openWinCentre = function(url,winName, w, h, toolbar, location, directories, status, menubar, scrollbars, resizable) {
<17> getURL ("javascript:NewWindow=window.open('"+url+"','"+winName+"','width=400,height=300,left=0,top=0,toolbar=No,location=No,scrollbars=No,status=No,resizable=No,fullscreen=No'); NewWindow.focus();void(0);");
<17> }
<17> how can I fix it :(
<17> on winName
<9> oh whoa its saturday
<9> no wonder irc is dead
<17> can someone help me please
<18> victor - besides the error of MovieClip being spelt movieclip - wuts the error given?
<18> seems to work fine
<18> as long as you test it within a directory that is allowed by your security settings to execute script - otherwise you'll need to play on webserver and test there
<14> it still shows "not_set_yet.addEventListener(.." when I try to double click an event in the actionscript list, meaning, I didnt set it right i guess?
<14> anyone know how to fix that?
<18> did you set an instance name?
<14> how do I do that?
<18> uh
<14> i just created a new fla page, added a couple controls (text and button), named them, and want events on the main window
<18> select the component/movieclip/textfield, whatever
<18> and type the instance name ot be used ... on the property panel
<18> ...
<14> there is no instance name when i select the background :(
<14> am I doing this wrong?
<18> no idea what you're even trying to do
<14> okay, when you create a blank fla page, it's white, right? i want to get events on that page
<14> just the main page
<18> get events of what?
<18> what you talkin'bout?
<18> lol
<14> like mouse clicks, movement, etc
<14> not specifically related to any particular object
<14> (except the main parent window/frame/whatever it is)
<18> mouseListener = new Object(); mouseListener.onMouseMove = function() { trace("moving"); mouseListener.onMouseDown = function() { trace("mouse pressed"); } mouseListener.onMouseUp = function() { trace("mouse released"); } /* updateAfterEvent(); sometimes required to redraw frame immediately */ }; Mouse.addListener(mouseListener);
<18> oop
<18> http://pastebin.sekati.com/?id=Anonymous@32ac8-b8427ab3-t
<18> lookup what you're trying to use - and make sure you're using what should be used to use such
<18> =)
<18> mixing what you 'think' and what flash 'needs' wont always work
<18> double-check :)
<14> right, i'm just playing around with it atm :)
<18> well
<18> best thing i can suggest is to learn where to find your info :)
<18> press F1 - and in the "books" on left side of panel....
<18> open the AS2 book - and in there you'll see AS Language Reference
<18> ... that'll list all objects/cl***es etc
<18> and you can quickly lookup what pertains to what there
<18> all props, methods, etc of anything available to you in flash
<18> you'll likely find answers for such things quicker that way (plus the plethura of information within the books helps as well)
<18> if you're workin with movieclips - lookup movieclip cl***.... everything you can do with a movieclip is listed there with examples
<18> simple :)
<18> ish
<14> I figure I'll be primarily using AS
<17> SHiZNiT
<14> I'm not working with movieclips, more-over I am interested in developing application-esq type things with flash (games, etc)
<17> it gives me an error in javascript
<18> doesnt give me an error
<18> this.openWinCentre("http://www.google.com","google";)
<18> works fine
<17> yeah the problem
<17> is when I p*** the variables from the function to the getURL
<18> you p***ed 2 arguments... they work fine
<17> it doesnt
<18> you can always use \"
<18> instead of " and ' combo
<18> ...
<17> mm
<18> escape your quotes and shouldnt have any problems


Name:

Comments:

Please enter the result of the sum 63 + 46 (to avoid spam):






Return to #flash
or
Go to some related logs:

#hardware
t
mp3 lbdt
are all marshmallows made in the same place
extension that does not match the format
#narcotics
#worldcup
#politics
ALWa3aad
#nhl



Home  |  disclaimer  |  contact  |  submit quotes