@# 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 9 10 11 12 13 14



Comments:

<0> but I would like thumbnails
<1> covered
<1> ffmpeg
<0> awesome thanks
<1> thumbs, cutting, re-encoding, w/without audio... w/without video....
<1> etc
<2> well ffmpeg can also save jpgs from file
<0> any other solutions I can look at?
<1> well **** merz - i guess only questio is to do as bitmapdata or to do as mc with buncha masking... hmmm
<1> time for that bowl
<1> heh
<3> magneto1: after i am setting the size, is it possible to make the bitmap smoother?
<2> brb
<0> hey magneto, you know of any softare like sorenson that will take jpegs too?
<4> whoever is wanting to know about thumbnail generation, you can code a php script to automatically resize images in a directory



<4> if you are pulling images from xml you can have a setup php script that will scan a directory, convert all images to thumbnails and rename the converted files
<4> then you can have it write the images to xml automatically
<4> that would probably be the ideal way to do it, if you are good enough to be able to write php as well :)
<4> *"then you can have it write the images to xml automatically" = write the image _filenames_ to xml
<5> http://www.php.net/gd
<4> perfect
<4> that's the library
<5> If you're using php5, simplexml is amazing. especially in php5.1.4 the dynamic writing abilities are awesome
<4> :o
<5> If not you can use DOM for creating xml output http://www.php.net/dom
<4> fred are you an experienced php coder?
<5> Or be cheap and generate an xml string yourself ;o
<5> yes
<4> awesome, I envy you
<4> ._.
<5> it's my job ;[
<4> haha
<4> Dosen't look like you like it
<1> if your projects dont have a low point, you are trying hard enuf
<5> I love php5 :p, just need to learn some as now
<1> arent*
<1> lol
<5> oo in php5 is awesome
<4> yeah I really need to learn php, I've been doing as for awhile, but if I knew both really well it would be amazing
<5> :p
<4> also need to learn css and all that webstandards nonsense
<4> lol
<5> if you need any xhtml/css/php help let me know, and you help me with as :p
<4> awesome, thank you -- sounds like a good arrangement
<4> im out, time to work
<5> cya
<6> anyone know how to tell html to refer to the current page?
<5> huh?
<6> say my current page is http://mypage.com, instead of saying http://mypage.com, anyway to say current page?
<5> dont put http://
<5> :o
<6> what if i dont know the page
<5> What are you trying to do
<6> setup a search
<6> to search a few specific urls, and current page
<6> (current page varies)
<5> What is your search made in
<6> google
<5> oh
<5> For google form search, I think you just add multiple hidden values of the urls you want to search
<6> hrmm. thing is, its user's page
<6> so the page name changes
<6> google allows me to drop three urls
<5> so?
<6> for its search
<5> you are trying to output the current address
<6> yes
<5> you can't do that in html, its not a scripting language
<5> you can use javascript or php
<6> ok, got php in the mix, i can setup a variable
<5> or whatever you want
<6> whats php for current page?
<5> $_SERVER['HTTP_HOST']
<5> will return the domain name eg
<5> mypage.com
<6> http://mypage.com/users?user=myUser



<5> for the acutally page you could do $_SERVER['HTTP_HOST'] . '/' . $_SERVER['REQUEST_URI']
<6> $_SERVER['HTTP_HOST'] will give that url back?
<5> no but the combination of http host and request uri will :p
<6> excellent, thanks :)
<5> np
<6> yeah, thats wicked, thanks :D
<5> lol, np
<3> after i am setting the size if a movieclip that containing a bitmap, is it possible to make the bitmap smoother?
<7> !find rules
<7> hey all, i'm am looking for a designer who could create a TV identity type of animation
<7> like you see on a news channel once in a while, with their logo and a cool animation
<7> not sure where to look for someone for this project, please let me know if you have any ideas where I could find this
<8> is there some reason for getURL("javascript:alert('text')"); not working when flash is in the browser ?
<9> looks pretty good to me
<9> maybe javascript is not enabled?
<8> it is I'm sure
<8> if I put alert("") in the html code it works
<5> Is there a way to dynamically resize the stage height?
<1> set your swf to 100% x 100%
<1> add a Stage listener that handles .onResize
<1> everytime doc is resized - listener will be called - which can update content display based on available space
<1> Stage.width
<1> Stage.height
<1> :)
<5> I dont want it to be 100%, I want it to be a specific height :o
<1> if display doesnt fit, gather height needed, and call JS to set swf obj height
<1> well
<1> if its 100%
<1> and you set size of container to 560px
<5> can I just do Stage.height = 200;
<1> isnt it 560px ?
<1> no
<1> you set your document
<1> settings...
<1> :/
<5> ;[
<5> Trying to generate a list of buttons from xml, I want the height to fit the amount of buttons ;o
<1> ya - so .. 100% ... noscale....
<1> build buttons, call js - set height
<1> :/
<1> of swf displaying buttons
<5> okie ;o
<1> could set it before if you knew element height
<1> but i guess thats not available to ya?
<1> :/
<5> nope :(
<1> so you'd need to build'm - set required height . then display'm
<1> build with _visible = false or such ... stuff all to an array
<1> then pop array index's one by one and animate into view or whatever
<5> Yep probably p*** javascript:changeSize(buttonBoxHeight)
<1> ya
<5> So, Is that the only way to interact with javascript/
<5> with getURL and javascript:?
<1> getURL("javascript:setHeight('"+divid+"','"+requiredHeight+"');void(0);");
<1> :)
<1> or such
<5> yea
<1> which would essentially call setHeight('somediv','300');
<5> yep
<1> swf would be 100% x 100% inside div
<1> resize the div ... the swf adjusts..
<1> =)
<5> yessir
<5> ty
<1> dont forget to add +"px" to your 300
<1> or you'l be chasing your tail for awhile possibly :)
<5> :p
<5> I know
<1> just mentioning..
<1> =)
<1> not questioning intelligence
<1> =)
<5> lol thank
<5> s


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#nhl
#winxp
assholefever codecs
#networking
#beginner
#beginner
Alan Gutmaker institute
#beginner
#gentoo
#beginner



Home  |  disclaimer  |  contact  |  submit quotes