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

    • I have a TV, but it is not used for normal linear TV, only streaming and it is not a Samsung and the best bit is, I don;'t and never have had a Instagram account. The only thing I have to do with Meta is Faceache and I only keep that just for the messaging part.
    • But building your own.. what? You can't build anything like the Steam Machine yourself. Even trying to get close costs a good deal more. Even just the CPU cooler in their price comparison is as big as the entire Steam Machine. If you want a regular gaming PC, then by all means, build that. If you want a a small console-like PC for the living room that is good for gaming, I'm not sure what else is a better deal. In the GN review, they only mentioned a small form factor Dell, which is like twice the size and hundreds of dollars more expensive.
    • Those are some popular multiplayer games. But hardly "all". Just those that don't work on Linux currently due to specific anti-cheat implementations. I think it's also fair to point out the literally thousands of games that don't work on the PS5. And it's not locked at 1080p. That's the default, which you can change.
    • Ubuntu Livepatch arrives on Arm64 to eliminate system reboots for kernel updates by Paul Hill Canonical has just announced that its Livepatch service now supports computers with Arm64 processors. For those who are not familiar, Livepatch allows users to apply important kernel updates without any service interruption or rebooting. While home users will benefit from this, it’s even more important for critical machines that absolutely should not be going offline at all. The feature is available as part of Ubuntu Core 26 for Arm64 and Ubuntu Core 20 and onwards for AMD64. According to Canonical, this will improve the security of systems that aren’t security-maintained daily or weekly, and it helps organizations work towards Cyber Resilience Act (CRA) compliance. If you are familiar with Ubuntu, you probably know that most packages can be updated without having to restart the system. There is one big exception to this, and that’s the kernel; it typically requires you to reload the system to boot into the new kernel. With Livepatch, Canonical has done something so that you don’t need to restart to begin using the new kernel. Aside from Ubuntu Core 26, users with Arm64 chips running Ubuntu 26.04 LTS can also use Livepatch. If you want to learn more about Livepatch, check out its product page. There, you can also find a button to join Ubuntu Pro (it’s free for several home devices) so that you can enable Livepatch. By linking your computer to Ubuntu Pro, you will also extend the life of your Ubuntu install from five years to ten years. If you are running Ubuntu, let us know in the comments if you have been looking forward to this feature on your ARM-based computer. If you’ve had a compatible AMD64 machine for a while and never used this feature, let us know why in the comments!
  • Recent Achievements

    • One Month Later
      nates earned a badge
      One Month Later
    • Week One Done
      Almohandis earned a badge
      Week One Done
    • Rookie
      dorf went up a rank
      Rookie
    • First Post
      mike_rumble earned a badge
      First Post
    • Dedicated
      tuben earned a badge
      Dedicated
  • Popular Contributors

    1. 1
      +primortal
      497
    2. 2
      +Edouard
      205
    3. 3
      PsYcHoKiLLa
      94
    4. 4
      Michael Scrip
      89
    5. 5
      neufuse
      71
  • Tell a friend

    Love Neowin? Tell a friend!