This item is by an Elite Author
bobocel
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
253
Purchases
Buyer Rating:
4.36 stars
4.36 average based on 58 ratings.
-
5 Star
3560%
-
4 Star
1424%
-
3 Star
610%
-
2 Star
11%
-
1 Star
23%
| Created | 17 September 09 |
| ActionScript Version | AS2 |
| Documentation | Unrated |
| Opens With | MX 2004 (7+) |
| Published Size | 2.22kb |
| Resolution | Resizable |
© All Rights Reserved bobocel -
Contact Envato Support

============== You can pass the XML as flashvars, by commenting the path in the actionscript file, and sending it as a variable instead.
would love to do this, but am scared i will screw something up lol. anyway you can help me?
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 morePlease get in touch for a quote.
bobocel,
Not looking for customized work (yet anyway, but I have always kept you in mind if and when I need it!) but if it is easy enough for you to upload a v2 of this file, I would diffently purchase. (This would be for an upcoming project, so I am in no rush)
Nice file by the way, I probably use this one in the near future as well…
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 moreHi – please check my 7th file under the Creative navigation above.
Dont know how I missed it, tired I guess. Thanks Bro
Hi bobocel, We had spoken briefly in the forum… grabbed the file and sent you out an email.Please let me know if at some point today you don’t receive an note regarding the custom work on the file. Thanks man, m.
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 moreI received it. I’ll get back to you soon, thank you.
bobocel,
Tried to contact you via your profile page a few weeks ago regarding the array randomization you had offered bemex63 on your logo scroll…appears my effort to contact you never reached you. No worries, but I still greatly need your randomization function. Please let me know the best way to contact you if not here.
Thanks so much.
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 morePlease use flashden at andreipotorac.com
Thanks for the response bobocel. I’ve emailed my request to the email address you’ve provided.
Thanks so much.
The Logo Scroll is exactly what I was looking for, but I need to confirm: Can I click on each logo to go to a different site? Seems that it would be the obvious behavior, but I don’t see that stated anywhere…
Thanks
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 moreYep.
Hi bobocel,
Thanks for your scroller – just what I needed…
Question: I’m trying to get links in same window and have added _self to line 95 of Actions.as: getURL(urlArray[this.nr], “_self”
;
It still shows up in new window. I have read that the ‘allowScriptAccess’,’always’, might help this but swfobject.js already has this if I’m not mistaken.
Any ideas why _self will not work?
Thanks very much.
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 more_blank is for new window, _self is for the same window – make sure you compiled the swf file again.
Would it be possible for you to share just the XML file, so I can view what switches are available for customization? If not, I wanted to know if the following were possible:
Turn off ‘Stop on mouseover’. Disable/Hide arrows. Disable linking. Adjust scroll speed.
Thanks.
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 more@ricecowboy: in the XML , you can edit the images only. For more features, you need to edit the source files, that come with the purchase.
Hi, I have a question, is there a way to make the logos monochromatic while the mouse is out, and change (or fade it) to color when the mouse moves over the logo?
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 moreYes, please contact me for custom work if you want me to implement that feature on your file.
Great file.
I’m looking to randomize the images on load. I noticed a few users here have requested the same feature… Is it possible to post the code?
I’ve sent you an email to clarify.
Thanks
- Author was Featured
- Bought between 10 and 49 items
- Elite Author
- Exclusive Author
- Has been a member for 6-7 years
- Item was Featured
- Microlancer Beta Tester
- Referred between 500 and 999 users
- Sold between 100 000 and 250 000 dollars
- Spain
+1 moreWith the code below, generate an array and then use that array to get the values for the logos and links:
Array.prototype.randomize = function() { var i = this.length; if (i == 0) return; while (—i) { var j = Math.floor(Math.random()*(i+1)); var tmp1 = this[i]; var tmp2 = this[j]; this[i] = tmp2; this[j] = tmp1; } return this; }
arr1 = new Array(“one”, “two”, “three”, “four”, “five”
;
arr1.randomize();
trace(arr1);