| |
| |
| |
|
Page: 1 2 3 4 5 6 7 8 9 10 11 12 13 14
Comments:
<0> it is 50,50 <0> should i change the statements to 49 <0> i can try that <1> No, change it to this: (scrollable_text._y>=50 && scrollable_text._y<=2050) <1> hence the >= and <= <0> alright, i'll try that too <0> it exports real slow because i have a ton of movie clips <0> it scrolls now, but it still doesn't limit it <1> Well, if it starts out at ._y = 50 and you click that mouse it will be at ._y = -350. It would be out of range then thus making that if() check not run. <1> if() statement I mean <0> I don't follow <1> Your MC starts out at ._y = 50 <1> Since it is within the if() conditional range you specified it is ran the first time you click the mouse. <1> If you click that mouse again it will no longer be within conditional range. <0> when I use this statement, on(release){if (y>50 && y<2050){scrollable_text._y += 400;}}, it moves 400 each time, but it never limits it
<0> like when it is at 50 it can still move -400 so then it is at -350 <1> Ah ok, += 400 <2> because at that point y = undefined <2> use if(scrollable_text.y > 0 ...etc <0> {if (y<=50 && y>=2050) (...how do i tell it to not do anyhing? <1> In the case of (y<=50 && y>=2050) I belive you have to set it up like this (y<=50 || y>=2050) <1> A MC could never exist in both <=50 and >=2050 conditions. One or the other <0> alright <0> what about something like this <0> on(release){if (scrollable_text.y>=51 || scrollable_text.y<2051){stop();} <0> on(release){if (scrollable_text.y>50 || scrollable_text.y<2050){scrollable_text._y += 400;}} <2> stop() will just stop the main timeline, if it's already stopped, that's a useless command <1> Your script keeps changing around <0> well is there anyway to tell it to not do anything <0> I keep trying different things <1> One problem is that you need to fix (scrollable_text.y>=51 || scrollable_text.y<2051). The .y should be ._y <0> haha, hopefully it isn't that little mistake <1> What are you trying to achieve exactly? If it is within those 2 numbers move it +400 or -400 or where do you want the MC to stop at the numbers 50 and 2050? <0> yeah <1> or do you* <0> I want it to not beable to move <1> Which one? <0> if it is outside of that range <1> ok <0> http://img18.imageshack.us/img18/8302/3nvsssss3io.swf <0> there is the swf <0> i'll beable to explain better if you look at that <0> if you click the lower left corner of box a1, then it zooms into it <0> then i want to beable to scroll around within there, but if you click the button to many times it shows just black <0> but, I can't get the actionscript to limit it <1> Ah I see <0> any tips, or should i just do it with tweens? <1> This is where prechecking the move is handy in my opinin. So... <1> The left arrow click would be: on(release) {if ((scrollable_text._y - 400) >= 50) {scrollable_text._y -= 400;}} <1> The right arrow click would be: on(release) {if ((scrollable_text._y + 400) <= 2050) {scrollable_text._y += 400;}} <1> What this does is checks the move is reasonable before moving it <3> Hi guys <1> Hello <3> I keep getting a debugger error on my webpage can someone take a look at it and tell me whats going on? <3> http://www.haifa-fencing.com/DD/ <3> I'm streaming a FLV <3> they page won't load without that flash debug thingy <0> that would be for the up and down arrows? the left and right deal with the x axis? <4> streaming ? You have a MM server ? <3> no :S <1> Oops. You are right Zane ;) <1> The up and down <3> it streaming from my server <4> it's downloading progessively then <3> yes it is <3> thats what I picked when I converted it to FLV <3> should I have done something else? <1> I am not seeing any debug errors psy <3> a window pops up asking where the debugger is <1> Hrmm <3> everytime I refresh <1> Oh that sounds like javascript for some reason <3> "Where is the Debugger or Profiler running?" <4> is it flash 8?
<3> yes <3> and them I have one of two choices, either Localhost or Other Machine: enter IP <3> do you know what I'm talking about? <3> you're not getting it? <1> I am not getting the popup. Let me try in IE real quick <3> oh yeah I'm using IE <1> Ah there we go <4> me either. Strange tho that i can see the controls of the movie. I'm on linux now and running flash player 7. However, no debug here <3> phew... I thought I was dreaming for a sec :P <3> prob on IE only than <3> maybe one of the stupid IE extensions? <1> You have debugging permitted on your publish settings? <3> hmm...? <3> oh oh yeah I know where to check that <3> hold on <3> yeah I did :S <1> I guess try it without it <3> hehe :P oops? <1> What? <3> works :P <3> guess that was it :P <1> Oh cool! ;P <3> now I just need to figure out why the hell I can't go into any of the forums anymore, but thats in a whole other channel <1> hehe <1> Zane, how did that work out for ya? <0> didn't work <0> I am just going to make it so the buttons don't appear when it is at the limits <1> Hrmm ok <1> Good luck with that <0> lol, well thanks, I think it will be easier than makeing that actionscript work <1> At least you get some easy tween smoothing ;P <0> yeah, that is true <5> hello i know that you have a huge bludgeon in your pants <6> is photoshop slicing typically only used for inserting images into tables? <7> slicing is for slicing ... not much else to say about it - tables or not, doesnt really matter - point is, parts are sliced as required for design <7> if you're slicing, you already know why/where you're slicing - otherwise you've missed a stage of development <7> heh <2> i want to make a website with graphics that are all 1x1 <2> and make it graphic heavy too <7> interesting goal <2> one day... <2> it's on the list <0> so basically you want to make pixel art <2> sure, but in a functional website <0> well why would you slice it into a million images, why not just make it one image, that is pixel art <2> well, not traditional pixel art <2> just pixel images <2> heh <2> why? because it's a stupid and ridiculous idea and it'll never happen <2> </joke> <0> yeah, I don't really see the purpose, except you could say your the first who did it <0> ^ like you said <2> derr <0> haha, i think it is the worst idea i have ever hear <2> exactly <2> that's why it's great <0> why don't you just slice an image up, then write a script that loads them in a random order, and tell the people viewing it to figure it out, or **** off out of there <2> OR <2> i could make a site that produces all the images in random sequence, and the person who views the site with the images in the proper sequence wins a prize <0> lol, that would work too <7> thats almost so crazy it might be a good advertising tool <0> but now that is my idea, so if you do it... i'll sue you <2> you can't just sue me, you gotta patent it before i do <7> <- owner kthx <7> :) <7> lol <0> haha <2> no problem <0> damn <2> i support the nit de la shiz <7> heh <7> launchin that healthcare cbt monday ... yay .. finally :P
Return to
#flash or Go to some related
logs:
#computers SiConect
#politics #debian #mirc sata patch ontrack definition: philophic they've gone to plaid #opengl #visualbasic
|
|