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



Comments:

<0> heed that advice
<0> age old nono
<1> hey guys.. i am trying to add video to a scene... i put the FLVPlayback component in, set the content path to the flv and the skin to the appropriate skin, but when i compile the movie, i don`t see anything... any ideas ?
<2> damn i still can't get the clip centered rite
<3> "right"
<3> rite is a ceremony
<0> but how do i check if a variable is a function?
<0> 'call' in f ?
<0> thats javascript
<1> any ideas ?
<0> ivan
<0> what version of flash are you publishing to
<1> 8
<1> in the flash editor, i actually see the panel, with controls and such.. but.. when i publish.. nothing
<1> argh.. i am an idiot.. had the action script set to v1.. not v2
<2> god damn it!



<2> i think my centering math/logic is rite, but then the container still stretches the image to fit which ****s up the centering
<2> since it makes the image bigger than the _width/_height i did the math/logic on
<2> hmm
<4> hi...I'm making a simple stamp program
<4> I want to have the user be able to click on an item
<4> and then be able to click on any place on the flash canvas...and have that bitmap/button displayed there
<4> so I'm thinking I have to use a symbol
<4> but...is there a way to dynamically duplicate a symbol as needed?
<4> or...to duplicate a symbol and place it wherever the user clicks?
<5> cya soon m8s
<6> hey guys... how can i validate a text field has the value of a 4 digit number?
<7> ( (tfmyField.text.length == 3) && (!isNan ( Number(tfmyField.text.length) ) ) <-- something like this mibbe?
<6> ill give it a go
<2> is there a recommended/preferred way to handle errors when loading network content in loadMovie() ?
<2> i can't seem to find a way that works in IE and crapzilla
<7> uhm
<7> 4, not 3
<7> hehe
<6> is there a way to enforce a text field to only accept digits?
<2> ok. i'm really hating how flash clips are sized/scaled.
<2> has to be the most absolutely retarded thing i've ever been around.
<8> hi, im trying to make a link to an image, and i want that image to open in a new page and be a 640x480 locked window. can i do this using the getURL function?
<9> as long as the swf is embedded in html - you can compile a string to send to javascript to be executed yes
<9> getURL("javascript:"+js_str);
<9> practicle example, new fla, save it where script is executable dependant on your player security settings (or upload to your webserver to test) ... put on frame1: var js_str = 'var n = "example"; function reportN() { alert("example = "+n); }; reportN();'; getURL("javascript:"+js_str); ... save and test
<9> you can just use \" if its more natural to ya (and depending what you're writing, you'll need to escape quotes anyways)
<9> it wont be a problem so feel free to do such
<8> thanks SHiZNiT, never new that i could use js like that in flash
<8> hmm, i tried and it only opened a blank page in my browser
<8> maybe something wrong with code
<8> g_01.onRelease = function(){
<8> getURL ("javascript:openNewWindow('http://www.tarkusgraphics.com/images/BMX.png','BMX','height=640,width=480,toolbar=no,scrollbars=no');";)
<8> }
<9> well like i said, depending on your player's security sandbox you may need to test on web
<9> since executing script locally is a 'nono' as far as sandbox is concerned
<8> alright
<8> what is sandbox?
<9> http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager.html
<8> thanks
<9> http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html#117502
<9> i'd add your local test drive to there and 'always allow' - makes things easier :)
<9> or could add folder
<9> anyways 'edit locations' and allow your drive/folder/path - whatever that you test under :)
<9> kinda wierd i know - but thats how ya set it :)
<9> as example, i have my h:\ drive in the list there - everything i do with flash is on H so i just allow the whole drive ... never have a problem :)
<10> hello all
<8> SHiZNiT, when i upload it to my server, it still doesnt work..
<9> well isnt openNewWindow a function in js?
<9> maybe you want window.open
<9> vs a function you wrote - opennewwindow which doesnt seem to do anything for ya cuz it sure isnt js native :P
<9> getURL ("javascript:window.open('http://www.tarkusgraphics.com/images/BMX.png','BMX','height=640,width=480,toolbar=no,scrollbars=no');";)
<9> works fine here
<9> grey bmx bike...
<8> thanks, let me try
<8> ok, works now, thanks.
<8> do u know why it turns the page where the script is into a different page that says [object Window] in it?
<8> http://www.tarkusgraphics.com
<8> look in the gallery and click on the BMX thumbnail. youll see what i mean
<11> hi



<11> i have a question
<11> is it possible to change the height of the flash region during playback?
<11> like if i have a flash drop down menu integrated into a css design
<11> i want the drop down to physically expand the css by changing its height
<11> is this possible?
<11> to clarify: not by changing the css height, but changing the flash height and then the css would follow suit since it is fluid
<7> jesus; might be.. check out http://hossgifford.com/downloads.htm
<11> you think it would be easier to just have 2 seperate flash movies and have one slide out/in using JS?
<12> .com vs .org?
<11> c0rgan
<11> doesnt look like its too compatible :/
<9> getURL("javascript:document.getElementById('flashElement').style.height='"+myHeight+"px';");
<9> ***uming var myHeight = 600; was set or such
<9> in flash
<11> woah
<9> might want to work with externalinterface cl*** though - maybe
<11> thats for me?
<9> if you wish to expand the swf ... sure
<11> i see
<11> oooh
<11> hmmm
<9> likely want to use Stage.align = "TL"; Stage.scaleMode = "noscale";
<9> so content doesnt scale or be unrelated to TL
<9> unrelated = sitting in center vs relative to topleft
<9> i usually set my flash containers to be the same name as the file
<9> that way you can just use this._url.substring(this.url.lastIndexOf("/")+1,this._url.length); which would give you filename.swf ...
<9> so if you named your swf obj the filename .... you can easily match'm up for js inside the swf
<11> hmmm
<11> getURL("javascript:document.getElementById('flashElement').style.height='"+myHeight+"px';"); say i have a button that does that in my mc
<11> and why do you have stage.align thats not a css property is it?
<2> i think i hate flash
<2> :D
<11> damn
<11> im such a newbie at flash i think its best i use my CS skills for this one
<11> CSS
<11> and JS
<9> stage is a flash obj
<9> its a param you set in your swf/fla
<9> not in css/js
<9> erm it *has params ...
<9> heh
<12> What is better for the site where you login and manage your social network, my.example.com or i.example.com?
<11> hmm
<11> is there a page
<11> where people can view your network
<11> or is it only for the user
<11> ***uming i means the username
<11> if its just for words sake my is much better
<12> No, the username would be, my.example.com/focus/jesus/
<12> You can view others on the same site
<11> my.example.com is much better
<11> widely accepted, i looks stupid as well
<12> Hmm. Maybe I should separate it. Maybe my.example is just an identity server, where you login, and change your settings, etc.
<9> why not make everyone a virtual? jesus.example.com .. ***uming user names dont break allowance
<2> is there anyway to p*** http auth user/p*** info along with a load() request inside flash?
<9> use .sendAndLoad
<2> i have a dev env with a .htp***wd protected directory and wanted to fetch something from it from my dev box with flash pro 8...
<2> ya, but the auth info is at the http layer, i'm not processing it at the script on the web server
<9> look into ExternalInterface cl***
<9> f8 only
<12> Maybe. But look how google has things like local.google maps.google. So then I'd need another domain, shiznet.examplegroup.com
<9> virtual domain...
<2> bah too much work
<2> **** it
<12> Yes SHiZNiT, it's more complicated than what I'm telling. Was just trying to get opinions in a simple case to help me figure it out
<9> just my .02 :P
<9> ***uming server is 'yours' and you have full control - shouldnt be a big issue but as said - ya, i have no clue what alls involved :)
<12> I am making an open network that I want to replace EFnet, etc. It will have chat like this, but also IM, money stuff, project management, etc. We are to be an actual company, and yet, it is open...
<12> So there needs to be a company front page, for the public... and something for all of us
<9> http://www.efnet.org/
<9> :)
<12> What are you saying
<9> ****ed if i know


Name:

Comments:

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






Return to #flash
or
Go to some related logs:

#delphi
#hardware
efnet serialz invite only
#gentoo
#firebird
#politics
#computers
#politics
#beginner
#windows



Home  |  disclaimer  |  contact  |  submit quotes