RomanDA

RomanDA

Joined Last seen Member # 789112
3 Posts 43 Replies 1,971 Reputation

ahh the old Panel Meters.. wonder where i got that idea from.. LOL Still need to build a power plant control room with gauges, meters, screen, even a reactor that overheats.. LOL :-) Thanks for pointing this oldie but goodie out.

16 Replies 6,455 Views

[quote]i enjoyed zubaz on the show the most, but i had a hard time telling voices apart~Next time I'll use a fake accent. (Maybe Australian, it seems popular )[/quote] Stop paying people to say things about you Zu!! Man.. it sucks to be broke.. Keep in mind what i look like, and what i can do.. now WHO are you voting for now??? just kidding - vote for Zu, he needs the fake love.. LOL

23 Replies 10,366 Views

The advance tab for an image is simple. I will make a new tutorial on this, but its not really that complicated. Its just margins, all around the image x pixels from the left KEEP, x pixels from the right KEEP, etc. So you can keep your rounded corners and "Stretch" or "Tile" the part between the 2 margins. It works great when you want to have a basic shape that can grow taller or wider without losing its look. I have used this on dozens of projects, and i think it works ver

12 Replies 11,889 Views

There is a cool way to make FF "think" your plug-ins are "valid" for that version. Check out: [link="http://https://addons.mozilla.org/en-US/firefox/addon/6543"]Nightly Tester Tools[/link] The following is a brief list of the extension's features, for the full set of features please visit the extension home page. [color="#8B0000"]* Extension compatibility fixing [B] --- You just right click on an add-on and go "override compatibility"[/B] [/color]* Titlebar c

16 Replies 3,647 Views

I have used a lot of "datasets" as they work like databases and i do a lot of web design so, it all links together. will have to check it out.

54 Replies 39,303 Views

sure.. it reads 1 items hue, then increments that, then stores it back out to the local storage. not real bad. It also looks for that local storage on 1st run to see if there is anything in there, if so, it uses that value. I think i need to add this to the snippets!

25 Replies 87,404 Views

Here is some revised code for the hue button. It reduces the calls to set the object hue's down to a single function call. It also saves the hue in storage so that it will be there when it comes back up the next time its run. [code="vbscript"] Sub Object_OnLButtonDown(x, y) Dim ulHue ulHue = DesktopX.Object("3Dmetal_Clock_Face").hue ulHue = ulHue + 10 'if hue is set to Black "1000" then set it back to Unshifted "0" If ulHue > 1001 Then ulHue = 0<br/

25 Replies 87,404 Views

ok.. looking at the code.. [code="vbscript"] 'Change object name to apply to new object ulHue = DesktopX.Object("3Dmetal_Clock_Face").hue ulHue = DesktopX.Object("3Dmetal_Clock_Hours").hue ulHue = DesktopX.Object("3Dmetal_Clock_Minutes").hue ulHue = DesktopX.Object("3Dmetal_Clock_Seconds").hue ulHue = ulHue + 10 [/code] Whu set the same VAR to multiple items, the only one that matters in this case is the LAST one. Applying it at the end of that f

25 Replies 87,404 Views

I would love to look over this code when its all done to see how your doing the row/col thing its something i have always struggled with in DX. This is so cool, I bow to your awesomeness.

54 Replies 39,303 Views

i love how it zooms making the whole page bigger not just the text, its sooo good. I also use that at times to make the pages smaller too.. CTRL & + = zoom in CTRL & - = zoom out CTRL & 0 = reset these are the +-0 on the NUMERIC Keypad!

16 Replies 3,647 Views

well heck thats easier.. make 1 object with multiple states call each state 1,2,3,4,5,6,7, etc.. add each image you want into that state. then the code could be cut down to just about nothing.. [code="vbscript"] Dim QuoteCnt Sub Object_OnScriptEnter QuoteCnt = 6 ' NUMBER OF STATES YOU ADDED (if you have 7 states, put 7) Object.SetTimer 1000, 3000 '-3000 is 3 seconds, make it whatever u want Call Object_OnTimer1000 End Sub <br

21 Replies 24,236 Views

[quote]Prounounced my nick right, DA, but ya got the gender wrong[/quote] Sorry.. its hard to know on here.. but you are an awesome coder/skinner as well. And I look forward to your input/help on the DXinfo site! Sorry the voice doesn't match the mean pics.. its all a game to scare people from bugging me. Hows that working btw??

15 Replies 5,890 Views