Jump to content

griffinmt

Members
  • Posts

    21
  • Joined

  • Last visited

Everything posted by griffinmt

  1. Ingolme - That is exactly what I wanted. I can filter out certain types (such as functions). Thanks
  2. What is a good/correct way to generate a list of all variable names currently in use, and preferably along with their type?
  3. Thanks for that pointer.It provided me with just exactly what I needed!
  4. Can you post a simple example of a css block that would give an image some fractional transparency?Could not locate anything in the tutorial.Martyn
  5. Couldn't find just the 'right' forum to put this, so maybe the mods will move it accordingly (TIA).I am trying to figure out how to create a semi-transparent image that can be placed (via css) on the browser window. Placing it is no problem, but I need a 'burgundy fog', ie: about 60% transparent to the items behind it.The only tool I have for making this is PSP, so would greatly appreciate a breif 'lecture' in the basic steps. Thanks for your time,Martyn
  6. After doing some more digging and reading (and testing), the previously mentioned link did not do the job for me as needed.But what does work are the object properties:.offsetHeight.offsetWidth.offsetlLeft.offsetTop.offsetParentusing these to accumulate current relative positions in reference to each subsequent parent object lets you iterate up the chain to determine the actual absolute values of any object. Then a moveable object can be placed using that info in the calculation.Not sure if any of this works in other browsers, but since my audience is (should be) IE6+, that is fine with me.Thanks,
  7. On first observation, I think I can use this link to help solve my problem. But won't be able to work on this till Sunday Afternoon.Thanks for the help, I'll let you know if I get it working.
  8. The problem with that approach is two-fold:if the target block wasn't defined with a style that contains a top or left value, you can't retrieve the default placement values. if you did get any values returned (minus the px), they would be relative to IT'S parent, not absolute for the window. The moveable block is completely distinct from any of that lineage.
  9. This could be entered into this forum or CSS forum I suppose.I want to be able to dynamically place a 'block' of html output (such as a small table or image) adjacent to and below another block. In fact there are several 'moveable' blocks and there are several 'target' blocks. When a moveable block is selected, I wish to set its position to absolute, set its left and top pixal value, set its zindex, then set it as display:block;I am not having trouble with the code to do this, but I AM having trouble determining the absolute position values of the target block bottom right corner. As defined, these targets temselves are 'floating' as relative blocks in their own parents space.If this is not clear, I will try to explain in another way perhaps.Anyone know how to get the absolute position (and dimensions) of any named block??
×
×
  • Create New...