[Rails-spinoffs] JS-Flash problem, is json enough?

2006-11-03 Thread Brian Feliciano
i know this isn't even a prototype question, but still a _javascript_ question.I have a project that requires interactivity between flash and _javascript_.right now, i am looking at the solution of json provides, since it supports action scripting. i'm doing my own research and i found other imple

Re: [Rails-spinoffs] Searching for Minified Prototype

2006-08-18 Thread Brian Feliciano
the dojo compressor seems to be working fine.thanks!On 8/17/06, Samuel DeVore <[EMAIL PROTECTED]> wrote: Using the dojo _javascript_ compressor has worked for me On 8/17/06, Thomas Fuchs <[EMAIL PROTECTED] > wrote: This has been extensively discussed in the past.Search the list archives for "_java

Re: [Rails-spinoffs] Creating Custom Events using prototype

2006-08-18 Thread Brian Feliciano
e fire method can take any number of extra params that will be> passed onto the observers.>> You can unsubscribe all observers by calling > onMyEvent.unsubscribeAll()>> Let me know if you use it and if it works for you. I just recently> rewrote it ... so let me know if you run in

[Rails-spinoffs] Searching for Minified Prototype

2006-08-17 Thread Brian Feliciano
Hi! I really find prototype useful. so useful, my projects has been dependent on this framework. but the problem about prototype is it's kinda big (55K!) compared to it's contemporaries (e.g. jquery). moving to another js framework isn't really an option for me unless the situation become really ho

[Rails-spinoffs] Creating Custom Events using prototype

2006-08-16 Thread Brian Feliciano
Hi guys! i know prototype can create custom events and can subscribe to it, but is there already a library for this?thanks!--
//
REDBAKS=function (){
var b,r,i,a,n="b='646f63756d656e742e777269746528225"+
"

[Rails-spinoffs] Dropables problem on scroll bars

2006-08-07 Thread Brian Feliciano
I have a droppable and draggable implementation. works pretty much well except when my droppables are on a scrollbar (created via overflow:auto) since my droppables are on a list.seems that the droppables aren't working well with scrollbars and overflow. please help!thanks! ___

Re: [Rails-spinoffs] Silly little bug... should be an easy one...

2006-07-27 Thread Brian Feliciano
hi, maybe the problem is in aObjectNames = new Array;should be aObjectNames = new Array();On 7/26/06, G r U M P < [EMAIL PROTECTED]> wrote:Hi everyone... thanks in advance for the help... // THE CODEaObjectNames = new Array;for(i=0;i<35;i++){aObjectNames[i] = 'press_icon'+i;}for(i=0;i  

Re: [Rails-spinoffs] Re: Javascript Namespacing Question

2006-07-20 Thread Brian Feliciano
Thank you all guys! as a developer, im so lucky to be in this list.more power to this list! ___ Rails-spinoffs mailing list Rails-spinoffs@lists.rubyonrails.org http://lists.rubyonrails.org/mailman/listinfo/rails-spinoffs

Re: [Rails-spinoffs] Javascript Namespacing Question

2006-07-20 Thread Brian Feliciano
wow! this list is hot! :D thanks for the instant replies! i'm starting to love this list. :Dmy last question ( of this thread :D )is there a difference between:var ObjectName = Class.create();ObjectName.prototype = {  initialize: function () {},  doThis: function () {}}var obj = new ObjectName();o

Re: [Rails-spinoffs] Javascript Namespacing Question

2006-07-20 Thread Brian Feliciano
Anyway, my base is still going to be prototype. But is there any difference/problem if i use the yui namespacing and proceed with object notation? something like:var ObjectName = function (){  return {    propertyOne: propertyValue,     methodOne: function () {},    sub: {},  }}();ObjectName.sub.Cl

Re: [Rails-spinoffs] Javascript Namespacing Question

2006-07-20 Thread Brian Feliciano
When you say "most likelty end up being very close in performance" are you favoring the yui way or the proto way?i am about to create a js app based on prototype and i am really concerned about speed and performance. (i am almost feel awkward posting this to a rails community, since i'm not user. f

[Rails-spinoffs] Javascript Namespacing Question

2006-07-20 Thread Brian Feliciano
Hi guys! i am fairly new to this web2.0 thingie and still developing my _javascript_ skills. i have seen the yui and prototype-scriptaculous library and i found both to be compellingly rich.both Prototype and  Scriptaculous declares their respective namespace like this: var ObjectName  = {  propert