@# 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



Comments:

<0> and I tried separating the audio from the video as well
<0> ****, this might as well be fatal for my presentation due tomorrow
<1> thats weird, so the audio syncs perfectly before you encode it to an flv, but is disjointed afterward?
<1> whats your flash fps settings?
<0> 24
<0> and that
<0> and that's my video fps too
<1> don't know what to tell you :\ it should work..there might be some sync actionscript stuff but I don't know much about it
<0> crisis
<2> shiznit?
<2> still there?
<3> anyone know how to go about creating a word lookup using an external wordlist? Where you type in a word and flash checks if its in the wordlist?
<1> no clue jhonny :\
<1> do you know how to make a simple p***word system to check a login against a file before playing the next scene?
<1> a p***file on the server
<4> TerryBew, you would have to use some sort of form submission



<1> frb, there was a quick tutorial I read that said to use input text, but didnt explain how to check against a file
<4> I'm a flash8 whore, so I would probably create a query and use it as the URL for an XMLConnector
<1> how would u suggest going about it?
<4> then use the result returned to check validity
<4> you would just need a serverside script that takes a form as input, and outputs XML
<5> or urlencoded variables - there's no service offered, why use xml?
<5> the extra markup adds no benifit in such a case
<4> then you could return other stuff on valid login
<4> like realname and anything else you want to use to personalize the interface
<1> pretty much I just want a simple if login exist && not in use, play movie else, play "denied". A
<5> separate service markup from required markup - punishing slow bandwidth (majority of visitors for most sites) users because you hear XML everywhere isnt exactly an intelligent approach
<5> but do as ya see fit, or as ya get help with
<5> i gotta split
<1> ok
<6> SHiZNiT the slow users like people are still on ISDN :o
<1> frb got any code lying around? I don't need bells and whistles
<4> nah, I've only done login via JS/ASP
<1> oh ok
<4> there is probabvly a way to use getUrl to do it
<4> www.stranger.per.sg or actionscript.org probably has something useufl
<1> I got this, if(_root.user == "Sanova" && _root.p*** == "whatever" ){
<1> gotoAndPlay(2);
<1> }
<1> }
<1> I want something similar,but for it to just check a file instead of it being inthe flash doc
<1> ill check those sites though, thanks
<7> hello everyone
<7> anyone here everytry to run video over a network, but could run it locally and on a web server
<7> local network
<6> same issue with loadMove() doesn't seem to work when loading files locally :/
<8> o/
<7> why won't it work then?
<7> is it a bug in the player?
<5> its loadMovie - maybe thats why
<9> SHiZNiT: you there mayng
<5> only for a brief moment
<7> that doesn't fully explain why it would work on a web server and local
<8> lo shiz m8
<9> SHiZNiT: why when I mask static text it makes it fugly
<5> sup g :)
<7> local network is only issue
<8> u ok?
<5> ono - change your textfield properties for rendering quality
<5> might have nothing to do with mask (which it shouldnt)
<9> it does
<9> also, can't mask dynamic text
<5> sure you can
<9> doesnt show up
<9> I create a dynamic text field
<9> put a mask on it
<9> and no works
<5> embed the font
<9> yea, I did
<5> or use .setMask to set the mask to dynamic text which is device
<5> well, works fine here
<5> dunno what yer doin
<5> :)
<9> yea it does work when I embed
<9> but it gets all blur'd
<5> ya



<5> so
<5> you need to not embed
<5> and use .setMask
<5> not 'placing' a mask on timeline
<5> but doing it from script
<5> you can place mask
<9> will do
<5> but ***ign it from .setMask method
<5> dont use layer masking
<5> should be fine then
<9> can I set x,y,w,h ?
<5> ... if within mask - sure
<5> area
<9> nm, ill read up on it
<9> thanks
<6> anyone way to detect the height and width of the txt inside a textfield in pixels?
<5> in docs...
<5> " If you have device fonts in a masked movie clip, they are drawn but not masked. "
<5> they are masked if use .setMask
<5> and player 6,0,79,0 +
<9> player 6,0,79,0 +?
<9> dreamache: mc.text._width
<5> http://www.macromedia.com/support/flash/releasenotes/player/rn_6.html
<5> oops 6,0,40 :)
<5> scroll down to
<5> New Features in Macromedia Flash Player 6, version 6.0r40
<9> still dunno what that means
<9> oh
<5> Masking Device Fonts
<5> You can use a movie clip to mask text that is set in a device font. In order for a movie clip mask on a device font to function, the user must have Macromedia Flash Player 6.0r40 or later.
<5> You can mask device fonts only by using a movie clip as a mask. You cannot mask device fonts by using a mask layer on the Stage.
<6> anyone way to detect the height and width of the txt inside a textfield in pixels?
<5> anyways.. i gotta get back to work
<5> :)
<9> draakje: mc.text._width
<9> draakje: for repeating twice, you should have at least notice your first question made no sence
<9> draakje: you can use getProperty as well
<6> OnoSendi that would the width of the bounding box of the textfield :P
<5> set textfield to autoSize - set either width or height
<5> get property of the other
<5> with autosize enabled, if you set one param, the other shall suite to fit
<5> suit even
<6> no options like getTextWidth() ?
<9> SHiZNiT you the SHiZNiT
<5> tfield._width
<5> tfield._height
<6> so i need the autosize the textfield to get te width and the height?
<5> createTextField("tfield",1,0,0,10,10); tfield.multiline = true; tfield.wordWrap = true; tfield.text = "well lets pretend this was the text that was in question and you wanted to get its size"; tfield.autoSize = true; tfield._width = 100; trace(tfield._height);
<5> change height instead, trace width...
<5> you'll see the usage
<5> if you're using a textformat - apply it before you set width or height
<5> since formatting will effect such
<6> oki :>
<6> i want to write mask the text in/away :+
<5> createEmptyMovieClip("mask_mc",2); with(mask_mc) { beginFill(0x000000,100): lineTo(tfield._width,0); lineTo(tfield._width,tfield._height); lineTo(0,tfield._height); endFill(); } tfield.setMask(mask_mc);
<10> Neversoft would be a better name for a porno game company
<6> nice
<5> oops, there's a : where there should be a ;
<5> heh
<5> darn keyboard :)
<5> anyways - must take my leave for sure now
<5> heheh adios
<5> : that should be ; is right after beginfill
<5> better than being known as a loaf
<5> halfbreed or halfbread? lol
<5> 60% wholewheat?
<5> :D
<6> thanks!
<10> SHiZNiT: there's a guy in another channel by the nick halfbreed
<10> i was goofin
<9> The path of the righteous man is beset on all sides by the inequities of the selfish and the tyranny of evil men. Blessed is he, who in the name of charity and good will, shepherds the weak through the valley of darkness, for he is truly his brother's keeper and the finder of lost children. And I will strike down upon thee with great vengeance and furious anger those who would attempt to poison and destroy my brothers. And you will know my n
<11> Do you understand why those who poison are punnished?


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

bartpe fixboot fixmbr
#gentoo
#computers
TEM.UL
#windows
#beginner
text2ps suse
07175889
#windows
#stocks



Home  |  disclaimer  |  contact  |  submit quotes