there isnt a specific dynAPI libary that writes to the server
but Brent has a great version that you could implement or modify/adapt
http://www.ashleyit.com/rs/
hope that helps
- Original Message -
From: "ToddNY" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, November 03,
In reply to this widget question and also to the one about the documentation
being buggy:
I found the src/lib/gui to be the best examples of widgets like the button.
Really the best way to understand widgets was just to understand inheritance
using the constructor function and the prototype functi
There are three ways to define a function. Which way is better and why?
function declarationFunction1(param1, param2)
{
alert(param1 +"___"+ param2);
}
declarationFunction2 = function(param1, param2)
{
alert(param1 +"___"+ param2);
}
declarationFunction3 = new Function("param1",
I am trying to make a loadpanel in a scrollpane using DynAPI 2.53. It is
almost working.
It works perfectly in IE5.5 and NS6.1 but in NS4.77 it only lets me use
setURL once. After I load the first document, it just ignores my subsequent
setURL calls. No errors are thrown but the new document does
Richard has a extensive collection of widgets at
http://www.richardinfo.f2s.com/dynapi/php/examples.html
maybe thats what you missed ;)
- Original Message -
From: "Cameron Childress" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, November 02, 2001 3:16 PM
Subject: [Dynapi-He
Hello, I am wanting to type text directly into a dynlayer by using the
keyup event. The only way that I knew how I could access the layer
after a key was pressed was to make it a DynAPI variable. But this acts
kinda wierd, when the key is pressed for example 'A' it would put 'AA'
on the dynl
--- Matt Fair <[EMAIL PROTECTED]> wrote:
> Is there a way to have setBgImage() to have an image
> that doesn't
> repeat? Maybe this would be a good thing to add to
> the dynlayer? I can
> add it if people think it would be a helpful
> addition or is there
> another way to get this to work?
>
I have used DynAPI version 1 in the past and loved the quick availability of
widget examples that I could easily adapt to use in my applications. Menu
examples that I could adapt with minimal time and just use, no hassle, no
fuss, and I was done and off to work on my next project.
While I unders
To prevent security issues, you simply need to ensure that
each frame (and the to level document) have the same document.domain.
This may seem a given to you, but it is not.
IT works something like this:
document.domain = "creative-workshop.com";
- Original Message -
From: "Michael Pember