ThemeForest

Posts by eduardo8

55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says
try to see here : http://www.mattkruse.com/javascript/dynamicoptionlist/

(I mean if you want to use dynamic select boxes + javascript, seems you did not talk about flash…)

Kind Regards
beta

Thank you for this ..

this is what i am looking for … now i gotta learn how to use it

thanks heaps once again

2 years ago in thread Help with a solution for search HTML
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says

Hi all , Need to know how to and where to find a search by state and then suburb function for a HTML site i am wanting to build.. where people would click the state and then have a selection of suburbs to choose and then the location pics would pop up after they select the suburb..

Any info is appreciated as i am new to doing this search function.

thanks

2 years ago in thread Help with a solution for search HTML
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says

Hey im back in town , wanted to say hi to all.

2 years ago in thread Hey guys & gals
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says
Another happy customer, glad to be of help! Nice of you to send the fix LG :)
thanks once again for help
No worries, the bar tab is on you next time Emroni and I are down under :D

Absolutely for sure

2 years ago in thread Removing Add to cart for one off items
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says
Another happy customer, glad to be of help! Nice of you to send the fix LG :)

thanks once again for help

2 years ago in thread Removing Add to cart for one off items
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says
oh thangs lg ill check it out
Eduardo I’m not sure you realise but this is my template, you emailed me I sent you the fix :D

hey lg thanks heaps ,

i didnt realise u had allready done this for me in the attachments

just tested it out and it all worked out excellent…

thanks for the help from all u guys once again

2 years ago in thread Removing Add to cart for one off items
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says

oh thangs lg ill check it out

2 years ago in thread Removing Add to cart for one off items
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says
Nice :)

Now you have to make sure that when the button is fired, it make itself disabled:

 rightNav.addToCart.onRelease = function() {
    bottomNav.viewCart._visible = true;
    var repeated = checkDuplicate(id);
    if (repeated == undefined) {
        cart[0].push(id);
        cart[1].push(item);
        cart[2].push(price);
        cart[3].push(handling);
        cart[4].push(quantity);
    } else {
        var tempPrice = Number(cart[2][repeated]);
        var tempHandling = Number(cart[3][repeated]);
        tempPrice += Number(price);
        tempHandling += Number(handling);
        cart[2][repeated] = tempPrice;
        cart[3][repeated] = tempHandling;
        cart[4][repeated] += 1;
    }
    calcTotal();

    // Disable button
    this.enabled = false;
    // Change text:
    this.myTextField.text = "Sold Out";
};

But do remember that when they remove the item from the cart, you will have to set the “this.enabled = false;” to “this.enabled = true”, and the text back to normal, to make the button useable again.

Only thing is, Im not sure how this template looks like or works, so I could be writing wrong code here. This is meant for a shop with one button per item. If you have one button for all items, this wont work. Then youll need something else. What you could do is create an array that holds all items, and when a user goes to an item thats inside the array, you disable the button. If its not in the array, enable the button

hellon emroni , yeah its actually one button for all items. im pretty sure ,the template is

http://activeden.net/item/motion-blur-template/39973

i will not post my site as i heard that self promotion is not allowed

i have a swf shop file which has one add to cart button whichj im pretty sure plays function for all items somehow

ill quickly give this a try tho to see what happens

2 years ago in thread Removing Add to cart for one off items
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says

Hello

im kinda newbie on here but if what u mean is that u would like the file to open on the same page instead of a new tab or window ,

that would mean that currently u have this code

on (release) {

getURL(“your file.html/”, “_blank”); }

to get it to open the same page u would have to put this code instead of the one above

on (release) { getURL(“your file .html”); }

2 years ago in thread Saving a file from the swf
55 posts
  • Has been a member for 2-3 years
  • Bought between 1 and 9 items
  • Australia
eduardo8 says

hey Emroni,

Thinking this is it…

 rightNav.addToCart.onRelease = function() {
        bottomNav.viewCart._visible = true;
        var repeated = checkDuplicate(id);
        if (repeated == undefined) {
            cart[0].push(id);
            cart[1].push(item);
            cart[2].push(price);
            cart[3].push(handling);
            cart[4].push(quantity);
        } else {
            var tempPrice = Number(cart[2][repeated]);
            var tempHandling = Number(cart[3][repeated]);
            tempPrice += Number(price);
            tempHandling += Number(handling);
            cart[2][repeated] = tempPrice;
            cart[3][repeated] = tempHandling;
            cart[4][repeated] += 1;
        }
        calcTotal();
    };
} 
2 years ago in thread Removing Add to cart for one off items
by
by
by
by
by