does anyone know of a program that will allow me to place images of any size into a directory and then have them automatically resized to the requirements of...
Image Magick is pretty good for this sort of thing. Its fairly easy to call it from PHP as a command line utility. http://www.imagemagick.org/ Cheers Ross ... ...
I've attached a class that I've used with some success for resizeing images. I use this class with this system: http://www.tedmasterweb.com/postcards/ Ted...
I recommend GD Lib: http://www.boutell.com/gd/ I believe most PHP hosts have this graphics library already installed, but I could be wrong. There's an article...
Has everyone had a chance to go to the SF site and download the latest core files? I'd like to give JCQ a tested and "approved" set for inclusion on the...
Hey Mike, Thanks for the reminder... I've been meaning to check out 4.1 and finally had a sec. I'm still heavy into PHPFBX3 so it may take me a while to digest...
Okay, the Demo App is updated on the SF site, you'll have to change your relative path to the core files as needed. Also, there was a small bug in the parser,...
Yes, you're using the tag correctly. The Location() function already has a exit(); after it, so I guess the break; command in the parser is overkill. I'll...
Hey all, I was wondering if you guys could help me out again. I have been mind mapping my fusebox apps for a while now (I've been trying REALLY hard to follow...
Speaking for myself, I wireframe/mindmap my app as a controller only, with the fuses in the circuits. Then I use FuseBuilder's handy "Convert to MVC" function...
Hi Ryan, the actual function that is created in the parsed file was taken lock, stock and barrel from the PHPFB3 core files originally created by David Huyck....
... I had this once too. Very strange behavior of the output..... I did some debug fuseactions before the relocation. When I shut them off, the relocation...
Well, I'm slightly mortified by your description of this behavior. I don't like unpredictable behavior in my applications. Especially the current one as it's...
Don't be scared :) The core files do their job as far as I can tell, but if the myGlobals file in any of my sample apps was the culprit, let me know where you...
I honestly don't know the technical diff between window.location, window.location.href and location.href, so... Whatever works best I guess...? Someone w/ a...
Per request, I've removed the "break;" from the parser after the Locate() function. Keep them coming guys! I want this to be rock-solid when we give it to JCQ,...
AFAIK, location.href is 'in the current frame of a frameset' whereas window.location.href includes all the frames. If not a frameset, then they're equavalent....
... To be short: it depends on the browsers DOM...... Topmost is document or window, but indeed depending on if there are frames or not it could be top as...