ActiveDen

DynamicField V3.0 - CSS

  • Has been a member for 5-6 years
  • Won a Competition
  • Contributed a Blog Post
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 100 and 199 users
jurgenv says
Author

i’m not entirely sure, but i believe this only happens when you have an image in the html. Is that so?

4 years ago
  • Has been a member for 4-5 years
  • Bought between 50 and 99 items
  • United States
gcole_5 says
Purchased

Yes… and all of my dynamic pages have images. Any possible solutions???

4 years ago
  • Has been a member for 5-6 years
  • Won a Competition
  • Contributed a Blog Post
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 100 and 199 users
jurgenv says
Author

I don’t know… I can’t seem to find one :(

4 years ago
  • Has been a member for 4-5 years
  • Bought between 1 and 9 items
Bit-101 says

Which css tags i supported? I want to show images and then place the text underneath every image

I belive the css tag is: clear: left or right or both

:-)

4 years ago
  • Has been a member for 5-6 years
  • Won a Competition
  • Contributed a Blog Post
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 100 and 199 users
jurgenv says
Author

Note to (potential) buyers: Due to my absence I have not been able to answer a lot of questions on my files. I will not get back to any questions asked earlier, but I will answer those asked from now on. So please, if you still have the same question, repost it here.

Regards,

Jürgenv

4 years ago
  • Has been a member for 4-5 years
  • Bought between 100 and 499 items
rez says
Purchased

If you drag and resize the text area to the very bottom, the control leaves the stage and you can’t get it back. You are stuck. :(

4 years ago
  • Has been a member for 5-6 years
  • Won a Competition
  • Contributed a Blog Post
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 100 and 199 users
jurgenv says
Author

sorry…

4 years ago
  • Has been a member for 4-5 years
  • Bought between 100 and 499 items
rez says
Purchased

lol. So can you fix it or post a code fix? Something like, if the control is greater than the height of the stage, make it a little less? Maybe that would go on the release of the control?

4 years ago
  • Has been a member for 4-5 years
  • Bought between 100 and 499 items
rez says
Purchased

and actually, it happens on the sides as well. :( A huge confusion for website visitors.

4 years ago
  • Has been a member for 5-6 years
  • Won a Competition
  • Contributed a Blog Post
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 100 and 199 users
jurgenv says
Author

lol. hi, here’s something you can do. Add this to the onenterframe in the actions layer:

if(resizeButton._x > maxX){
        resizeButton._x = maxX;
    }
    if(resizeButton._y > maxY){
        resizeButton._y = maxY;
    }

replace maxX and maxY. I can’t get it to do this automatically.

Jurgen

4 years ago
  • Has been a member for 4-5 years
  • Sold between 1 and 100 dollars
  • Bought between 50 and 99 items
raymoore says
Purchased

how can I adjust the size without the use of the resize clip

4 years ago
  • Has been a member for 4-5 years
  • Sold between 1 and 100 dollars
  • Bought between 50 and 99 items
raymoore says
Purchased

To be clear how can I adjust the size without the use of the resize clip in width via Actionscript

4 years ago
  • Has been a member for 5-6 years
  • Won a Competition
  • Contributed a Blog Post
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 100 and 199 users
jurgenv says
Author

raymoore, you would have to make the resizeclip invisible (_visible = false) and then set it’s _x and _y position to your specific values.

Or if you’re more advanced in actionscript, search for all positions where I’m using the _x and _y values of the resizeclip and change the actionscript there to, for example, use a variable as reference value.

4 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
jimmygrima says
Purchased

hey fantastic file…. I am trying to load the movie of your file from another movie but I keep on getting an error on loading the xml file.. do you nkow why ? thanks

4 years ago
  • Has been a member for 5-6 years
  • Won a Competition
  • Contributed a Blog Post
  • Exclusive Author
  • Sold between 50 000 and 100 000 dollars
  • Elite Author
  • Bought between 10 and 49 items
  • Netherlands
  • Referred between 100 and 199 users
jurgenv says
Author

hi Jimmy. The issue lies within flash: it’s trying to load the xml and css files from the location where the main movie file is. You probably have the two of them in different folders. You can solve it either by changing the path in the flash file, or moving the xml and css file to the same folder as the main swf.

4 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
anchor says
Purchased

Can you have more than one of the dynamic fields on one page? And if so, please explain how.

Thanks!

3 years ago
Author
jurgenv jurgenv replied

You can make several copies, but you’ll have to change the xml filename that they refer to. Then make several xml files to accompany each instance of the dynamicfield.

3 years ago
  • Has been a member for 3-4 years
  • Bought between 10 and 49 items
anchor says
Purchased

Thanks for the info on that last post. Now I’m trying to turn the mouse scrolling off for the dynamic fields in my site with no success.

In the Action Script I thought that this would take care of it, but it doesn’t.

page.page.mouseWheelEnabled = false;

I want the user to have to click on the scroll bar to scroll the text inside the scroller because I have scrolling turned on for the actual page and don’t want the text scrolling to interfere with the more important page scrolling.

Can you please help me?

Thanks!

3 years ago
Author
jurgenv jurgenv replied

No, that’s not the right line indeed. What you should delete is the following:

//Mousewheel
var mouseListener:Object = new Object();
/////
mouseListener.onMouseWheel = function(delta) {
    scrollThatBar(-delta*10);
};
Mouse.addListener(mouseListener);
3 years ago
by
by
by
by
by