Latest topics
» iChat 2.0 - A New Way to Chat!
Fix: How to link Programs. EmptySat Jun 23, 2018 11:38 pm by OnyxTech

» iNBA Super Rankings (12/15/2013)
Fix: How to link Programs. EmptySun Jun 17, 2018 11:48 pm by iNBA

» Tigers vs. Greats, Jeremiah Clark pours in 25 as Tigers take victory, 88-80
Fix: How to link Programs. EmptySun Jun 17, 2018 11:27 pm by iNBA

» 2013-2014 Free Agent Watch
Fix: How to link Programs. EmptySun Jun 17, 2018 11:11 pm by Stanley

» SAMUEL HOLLOWAY JUST SCORED 97 POINTS IN ONE QUARTER!!!
Fix: How to link Programs. EmptySun Jun 17, 2018 11:10 pm by Stanley

» Drew Que of Hialeah Horizon cashes in 55 for the win over Celtics, 126-113
Fix: How to link Programs. EmptySun Jun 17, 2018 11:08 pm by Stanley

» Samuel Holloway makes history with magical 106 point performance against Austin Galaxies, 183-81
Fix: How to link Programs. EmptySun Jun 17, 2018 11:08 pm by Stanley

» Danny Dubb delivers 81 in win over Atlanta Hawks, 175-88
Fix: How to link Programs. EmptySun Jun 17, 2018 11:06 pm by Stanley

» iNBA Super Rankings (11/17/2013)
Fix: How to link Programs. EmptySun Jun 17, 2018 11:05 pm by Stanley

Most active topic starters
Kernel
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
OnyxTech
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
iNBA
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
Alex
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
Raymond
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
Bedbed
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
Cyber
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
Combz
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
Teh Can
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 
GGsmalls
Fix: How to link Programs. I_vote15Fix: How to link Programs. I_voti11Fix: How to link Programs. I_vote16 

Top posting users this month
No user

Member of the Month
Winner MoM Want to be Member of the Month? Simply enter your name below and receive, 5000+ points, NameGlow (Any color), and A title picture!
Username:
New Network & Projects

Fix: How to link Programs.

View previous topic View next topic Go down

Fix: How to link Programs. Empty Fix: How to link Programs.

Post by Riley Wed Feb 06, 2013 8:26 pm

How to Link Programs?

Step 1. Important
Download Oxygen 2.0.3 Official release. NOT beta. This is a significance of the reason why people's codes aren't work. You may need an update.

Step 2. config.oxy
When downloaded, open up config.oxy, and in line 77 where is says,
Code:

CMD.connective?="false";
ifNOT state.LINK.program.="false";

Change false to true, then proceed to the next step.
NOTE: You also have to change Line78(ifNOT), to the following:
Code:
ifSO;. CMD.state.LINK.program.="true";

Step 3. Your Program
If you have already have created two programs, great. If not, make a copy of test.oxy in the installation pack.

Since you have already made it legal to link programs together, it's time to give the command to .link

Open your .oxg or .oxy and insert the following:
Code:

<OXYproperties>
start.function.properly.;
include.maincore.oxy;

CMD.start.;
#commence
include config.oxy.START;
      INSERT.CMD.FROM (77).START;
      INSERT.link="Your program.oxy(.oxg)"
//INSERT PROGRAM TO LINK ABOVE. USE .OXY OR .OXG,
                            backup.config.oxy.running
IfSTART.then.HOLD=(1);Open;
                              if "NOT RESPONSIVE"
open.config.oxy
CMD.end   
POSTandSTART prgm/with_$POST method;
</OXYproperties>

Then at the very top of your second program(line 2) put the following:
Code:

<OXYproperties>
start.function.properly.;


CMD.start.;
#commence
include config.oxy.START;
      in sequence
ALLOW.(your first program here.oxy).START
USEandALLOW.
    if "NOT RESPONSIVE"
.close
CMD.end
;null

      STARTandECHO.withend "There were many errors, try rerouting your error by looking at the config file";
</OXYproperties>

Taa-daa! Your code should work. If you have any problems with anything above. Please leave a reply with your issue. Me or any of the code team will answer your question.



Riley
Riley
Coder
Coder

Posts Posts : 17
Points Points : 10053
Join date Join date : 2012-12-12

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by iMag Wed Feb 06, 2013 9:06 pm

Well, I think the code works. But every time I open the program. It says.
00000x1 HTML.noALLOW.

I'm trying to make the iWorld register. I know it has something to do with HTML not allowed. Help?
iMag
iMag
Forum Expert
Forum Expert

Posts Posts : 11
Points Points : 6826
Join date Join date : 2012-12-09

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by Riley Wed Feb 06, 2013 9:11 pm

iMag wrote:Well, I think the code works. But every time I open the program. It says.
00000x1 HTML.noALLOW.

I'm trying to make the iWorld register. I know it has something to do with HTML not allowed. Help?

After the #commence on both of the codes, insert this in the line below.
Code:

ALLOWALL.HTML;
Riley
Riley
Coder
Coder

Posts Posts : 17
Points Points : 10053
Join date Join date : 2012-12-12

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by iMag Wed Feb 06, 2013 9:12 pm

Riley wrote:
iMag wrote:Well, I think the code works. But every time I open the program. It says.
00000x1 HTML.noALLOW.

I'm trying to make the iWorld register. I know it has something to do with HTML not allowed. Help?

After the #commence on both of the codes, insert this in the line below.
Code:

ALLOWALL.HTML;

Ah. how significant. Worked like a charm Riley! Now the iWorld register is a go.
iMag
iMag
Forum Expert
Forum Expert

Posts Posts : 11
Points Points : 6826
Join date Join date : 2012-12-09

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by Danny Sun Feb 10, 2013 8:01 pm

Nice work Riley. I can link my two programs now.
Danny
Danny
Registered User
Registered User

Posts Posts : 26
Points Points : 16135
Join date Join date : 2012-12-09

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by G3n Sat Feb 16, 2013 2:27 pm

Worked Perfectly. Liked.
G3n
G3n
Registered User
Registered User

Posts Posts : 3
Points Points : 1860
Join date Join date : 2013-02-16

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by Gio Sat Oct 26, 2013 10:13 pm

Great work, Riley.

Gio
Developer
Developer

Posts Posts : 2
Points Points : 1240
Join date Join date : 2012-12-12

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by LOLman22 Thu Nov 28, 2013 10:34 pm

Amazing work, Riley!
LOLman22
LOLman22
Registered User
Registered User

Posts Posts : 24
Points Points : 14880
Join date Join date : 2012-12-13

Back to top Go down

Fix: How to link Programs. Empty Re: Fix: How to link Programs.

Post by Sponsored content


Sponsored content


Back to top Go down

View previous topic View next topic Back to top


Permissions in this forum:
You cannot reply to topics in this forum