Recommended Posts

Originally posted by @ce

Im not too sure if this was asked ananswered yet but since I dont feel like reading all the pages I will ask anyways.

Winamp Skin? or suggestions for a skin that will match?

well id suggest some of the 'BLackcomb' or 'Longhorn' skins, as its the same type of blue methinks as most of them...

hi the new active desktop is really nice :)

good work

ok 2 things eheh :

i have the .html file as my wallpaper, but the links arent working...

also there is a very slight mismatch of the 'up' and 'over' states of the My Documents button in the flash....

apart from that its lookin brilliant! :)

have u any idea why my links arent working?

For some reason my copy of the theme seems to still have some of the bugs it had before.. BTW.. as I said last night the links are off slightly from the desktop background... Plus the links do not work all the time( not sure why) and when they do work it loads it as the background...

The theme has alot of improvements! I like it alot... Some how I think the problems are the result of my windows xp or an older version of styles xp which version are you using?

Suggestion: the roll over on the start menu overlaps the yellow.. it kinda makes it look like a mistake.. Can It be fixed?

And on the left side tool bar in a folder where it tells u the specs.. May I suggest changing the colour? it kinda blends with the bar...

Thats it for now.

Thx,

Thantos

Ok I've adjusted the desktop to my size (1024 x 768) and with alot of work i have adjusted the size of the flash bar and moved it so that is it is synchronized with the background.. however now when I try to test the buttons it says something cannot locate pls check the link... Wht I would like to know is how can I edit the links on the swf file??

BTW I have Swish 2.0 and Macromedia Flash MX 6.0

Any help would be appreciated :)

OSiris needs to post the .fla then we can edit the link can you send me the 1024x768 file I can't see the text when it is at 1280 x1024. THere is a program that decodes swf file but i can't remember what it is called.

P.S. this is my favorite style and i love it woo hoo

lol damn you noticed the my documents thing lol.

Okay now as for the flash, just import the .swf file, with swish just goto import and your all set.

Now, I need to talk to K420 he sounds like hes onto somethign with those linlks.

Originally posted by k420

ok so for the links to be fixed on flash the on release get url command in flash must be pointed to C:WINDOWSexplorer.exe for eample.

Yeah or C:WINDOWSSystem32rundll32.exe shell32.exe,* (where * is the rest of the command). However that is basing it on the user having that exact Windows directory. For instance mine is E:WINDOWS (don't ask, long story).

Osiris, this is what I posted earlier, and what k420 is referring to (I think lol).

Originally posted by jesterzwild

Took some searching but here are the shortcuts to get to My Computer and Control Panel. These are strictly the commands you would enter if you created a shortcut to these, but I assume you could use them still (not sure how you are doing this in Flash). You should be able to use the commands by themselves but if not try adding this prefix: "%windir%" or "%windir%System32".

My Computer:

Explorer ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}

Network Neighborhood:

Explorer ::{208D2C60-3AEA-1069-A2D7-08002B30309D}

Recycle Bin:

Explorer ::{645FF040-5081-101B-9F08-00AA002F954E}

Control Panel:

Explorer ::{20D04FE0-3AEA-1069-A2D8-08002B30309D}::{21EC2020-3AEA-1069-A2DD-08002B30309D}

rundll32.exe shell32.dll,Control_RunDLL

Those numbers aren't links they are hexidecimal (or something like that) strings, you find them in the registry. I don't believe (but don't exlude it as a possibility) that those by themselves will link to the destination (my computer etc). the two possibilities I see are either to continue and explore to find a generic address to those locations or to use html (it can be easily edited) and use flash or something else for on mouse and click effects.

They are not links, but instead are the addresses of those folders. As far as I know they are accurate and I have gotten them to work in the Run dialog box and by using a Shortcut. However they will not work as links or as something typed into the Address field in Windows Explorer.

The problem with using them as links is that you are actually executing an .exe file (Explorer.exe and rundll32.exe with shell32.exe) instead of navigating to a destination folder.

I had used them in Visual Basic and C++ programming and offered them as a possible method if possible. Hmm... just had a thought, can you include something like VBScript into a Flash file? or does Flash have its own scripting language? or does it have one at all?

Originally posted by jesterzwild

They are not links, but instead are the addresses of those folders. As far as I know they are accurate and I have gotten them to work in the Run dialog box and by using a Shortcut. However they will not work as links or as something typed into the Address field in Windows Explorer.

The problem with using them as links is that you are actually executing an .exe file (Explorer.exe and rundll32.exe with shell32.exe) instead of navigating to a destination folder.

I had used them in Visual Basic and C++ programming and offered them as a possible method if possible. Hmm... just had a thought, can you include something like VBScript into a Flash file? or does Flash have its own scripting language? or does it have one at all?

Flash has its own scripting language.

Originally posted by codyg11

Flash has its own scripting language.

Hmm, I will have to find out if there is an equivalent command/procedure as there is in the languages I know to be able to do this.

The VB procedure would be as follows for the Control Panel:

Call Shell("rundll32.exe shell32.dll,Control_RunDLL", vbNormalFocus)

Does anyone know of something similiar in Flash? or is this impossible?

Update:

I think I may have found a solution. In Flash there is something called the fscommand. From what I've gathered the use goes as follows,

fscommand (filename)

So maybe something like (for the Control Panel) this would work,

fscommand (C:WINDOWSSystem32rundll32.exe shell32.dll,Control_RunDLL)

I am going to keep researching this, hopefully this will work and Osiris can get it working!

The script in Flash is called "ActionScript."

Yes, there is something similar to the call function in VB, but I am not sure if you call a file on the hard drive with it.

You have a "call" function in Flash MX. The syntax is as follows:

on (release) {

call();

}

You also have a "call function" where you can specify and object, function, and its parameters:

From the Reference in Flash MX

allows you to use parameter fields to call a user-defined function in normal mode in the Actions panel.

Unfortunately, I don't think that this scripting language will let you work with outside files. Please correct me if I am wrong.

Edit: This is the definition of the "fscommand" function, according to the ActionScript dictionary in Flash Help:

Action; allows the Flash movie to communicate with either the Flash Player, or the program hosting the Flash Player, such as a Web browser. You can also use the fscommand action to pass messages to Macromedia Director, or to Visual Basic, Visual C++, and other programs that can host ActiveX controls.

I think this would be the syntax:

on(release){

fscommand("command" , "parameters")

}

Check this tutorial out, http://www.actionscripts.org/tutorials/beg...les/index.shtml, I think it may help. The only bad part is that is uses two different procedures for 9x/ME and NT/2K/XP, and apparently uses the "DOS" or Command Prompt.

I think we may overwhelm Osiris with all this information lol :D

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • What the press release doesn’t mention, however, is how much water the natural gas plant itself will consume, Natural gas plants use about 2,803 gallons of water per megawatt-hour produced, which is significantly less than coal-fired plants that use around 19,185 gallons per megawatt-hour. Overall, natural gas plants are more water-efficient, using 584% less water than traditional power plants on average. AI generated
    • DJI Neo 2 Fly More Combo gets a Prime Day exclusive pricing by Steven Parker DJI reached out to let us know that the DJI Neo 2 Fly More Combo has reached its lowest price ever ahead of Prime Day that starts tomorrow. This Fly More Combo kit adds two extra batteries, and a charge hub so you can charge all three at the same time, or keep two spares fully charged for quick swap and drone flying. (buying link below) Here are some of the important specifications: DJI Neo 2 Fly More Combo Dimensions: 147x171x41mm without DJI Neo 2 Digital Transceiver 167x171x54mm with DJI Neo 2 Digital Transceiver Takeoff Weight: 151 g without DJI Neo 2 Digital Transceiver 160 g with DJI Neo 2 Digital Transceiver Max Ascent Speed: 0.5 m/s (Cine mode) 3 m/s (Normal mode) 5 m/s (Sport Mode) Max Descent Speed: 0.5 m/s (Cine Mode) 3 m/s (Normal Mode) 3 m/s (Sport Mode) Max Horizontal Speed: 8 m/s (Normal Mode) 12 m/s (Sport Mode) 12 m/s (tracking status) Max Takeoff Altitude: 2000 m Max Flight Time: Approx. 19 minutes (approx. 17 minutes with the propeller guards) Each battery allows the drone to perform at least 20 palm takeoff and landing for shoots in succession Max Hovering Time: Approx. 18 minutes (16.5 minutes with the propeller guards) Max Flight Distance: 7 Km Max Wind Speed Resistance: 10.7 m/s (Level 5) Operating Temperature: -10° to 40° C (14° to 104° F) Global Navigation System: GPS + Galileo + BeiDou Hovering Accuracy Range: Vertical: ±0.1 m (with vision positioning) ±0.5 m (with satellite positioning) Horizontal: ±0.3 m (with vision positioning) ±1.5 m (with satellite positioning) Internal Storage: 49 GB Class: C0 (EU) Image Sensor: 1/2-inch CMOS Sensor Lens: FOV: 119.8° Format Equivalent: 16.5 mm Aperture: f/2.2 Focus: 0.7 m to ∞ ISO Range: Photo 100-3200 (Single Auto) 100-12800 (Burst Auto/Timed Auto) 100-12800 (Manual) Video 100-12800 (Auto) 100-12800 (Manual) Shutter Speed: Video: 1/8000-1/30 s Photo: 1/8000-1/10 s Max Image Size: 12 MP Photo 4000×3000 (4:3) 4000×2250 (16:9) Still Photography Modes: Single/Timed Shot Single Shot: 12 MP Timed Shot: 12 MP, 2/3/5/7/10/15/20/30/60 s Photo Format: JPEG Video Resolution: Horizontal Shooting: 4K (4:3*): 3840×2880@60/50/30fps 1080p (4:3*): 1440×1080@60/50/30fps 4K (16:9): 3840×2160@100**/60/50/30fps 1080p (16:9): 1920×1080@100**/60/50/30fps Vertical Shooting: 2.7K (9:16): 1512×2688@60/50/30fps Video features: MP4 Bitrate: 80 Mbps File System: exFAT Color Mode: Normal EIS: Supports RockSteady and turning stabilization off Gimbal: Stabilization: 2-axis mechanical gimbal (tilt, roll) Mechanical Range: Tilt: -125° to 105°, Roll: -43° to 43° Controllable Range: Tilt: -90° to 70° Max Control Speed (tilt): 100°/s Angular Vibration Range: ±0.01° Image Roll Correction: Supports correction of footage recorded on the drone. WiFi: 802.11a/b/g/n/ac/ax Bluetooth: 5.2 Battery: Capacity: 1606 mAh Weight: 46 g Nominal Voltage: 7.16 V Max Charging Voltage: 8.6 V Battery Type: Li-ion Chemical System: LiNiMnCoO2 Energy: 11.5 Wh Charging Temperature: 5° to 40° C (41° to 104° F) Charge time: When Using the Two-Way Charging Hub (65W): Approx. 68 mins to charge three batteries simultaneously from 0% to 100% When Directly Charging the Aircraft Body (15W): Approx. 70 minutes to charge from 0% to 100% (MSRP) Price: $349 As such, you have everything you need to get started right in the box, including the two extra batteries, and a spare set of propellers should things go amiss with the original set of blades on the drone. Oh, the humanity! What's in the box? DJI Neo 2 Aircraft x 1; DJI Neo 2 Intelligent Flight Battery x 3 DJI Neo 2 Two-Way Charging Hub x 1; DJI Neo 2 Spare Propellers (Pair) x 1 DJI Neo 2 Spare Propeller Screw x 4; Screwdriver x 1 DJI Neo 2 Propeller Guard (Pair) x 1; DJI Neo 2 Gimbal Protector x 1 USB-C to USB-C Data Cable x 1 Having never had the chance to mess around with a drone myself, a few more highlights for this drone are listed below: Lightweight & Portable Design - Weighing just 151g and C0 certified, this compact drone features full-coverage propeller guards for safer, worry-free transport and flight. Palm Takeoff & Landing, Gesture Control - Enjoy easy palm takeoff and landing, plus intuitive gesture controls for hands-free operation and seamless flying experiences. Smooth & Reliable Tracking - ActiveTrack keeps your subject in focus, while Apple Watch lets you view live feed, check flight status, or use voice control to adjust tracking. Easy Moment Capture With SelfieShot - Snap memorable moments easily with SelfieShot, allowing quick and convenient selfies anytime with just a simple tap. All-Around Safety & Flexible Flight - Fly confidently with omnidirectional obstacle sensing and enjoy versatile flight for safer, more dynamic aerial adventures. 4K High-Quality Imaging - Capture every moment in stunning detail with 4K resolution, delivering crisp, lifelike photos and videos every time. Good to know DJI also notes on the Amazon sales page that due to platform compatibility issues, the DJI Fly app has been removed from Google Play. Visit the official DJI website to download the user manual and the latest DJI Fly app for a better experience. Which means you will have to sideload it on your Android. Where to buy DJI Neo 2 Fly More Combo for $349 at Amazon US The above price has been communicated to me as a Prime Day exclusive. As an Amazon Associate we earn from qualifying purchases.
  • Recent Achievements

    • Dedicated
      tuben earned a badge
      Dedicated
    • Week One Done
      mnsgroup earned a badge
      Week One Done
    • Conversation Starter
      sumytbe earned a badge
      Conversation Starter
    • One Year In
      B4dM1k3 earned a badge
      One Year In
    • One Year In
      DarkWun earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      517
    2. 2
      +Edouard
      203
    3. 3
      PsYcHoKiLLa
      97
    4. 4
      Michael Scrip
      82
    5. 5
      neufuse
      67
  • Tell a friend

    Love Neowin? Tell a friend!